I have a program written in Sicstus Prolog using constraints. My goal is to use labeling/2 and some other method to obtain a random instantiation of my variables.

Example:

X #> 2, Y #= 2*X, Z #<10

If I use

List = [X,Y,Z],
labeling([], List)

The first result obtained will be X = Y = Z = 0. How do you think is the best way to return a random set of values for X, Y and Z?

link|improve this question
feedback

1 Answer

I do not know much about the labeling options in recent SICStus versions, but with library(clpfd) of SWI-Prolog, there are the options random_variable(Seed) and random_value(Seed), you can use them for example with labeling([random_variable(10),random_value(10)], List). Maybe you can get the authors of SICStus to integrate similar options?

link|improve this answer
I don't seem to be able to use random_variable and random_value as options for labeling, even though I'm using that library.! Domain error in argument 1 of user:labeling/2 ! expected labeling_options, but found random_variable(10) ! goal: labeling(user:[random_variable(10),random_value(10)],[_134]) – ecc Jan 1 at 23:22
It's really a bummer that I can't use those options with SICStus, since I'm forced to use this instead of SWI. – ecc Jan 2 at 14:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.