up vote 1 down vote favorite
share [g+] share [fb]

For example, if I make a query like 'between(1,4,X)?' I would expect something like X=2,X=3. Is this possible?

link|improve this question

80% accept rate
feedback

1 Answer

up vote 3 down vote accepted
 between(A,B,X):-X is A+1,X<B.
 between(A,B,X):-A2 is A+1,A2<B-1,between(A2,B,X).
link|improve this answer
Thank you! I'm still at my beginning states of learning Prolog and I was stuck with this. – wallyqs Nov 9 '08 at 23:12
It took me ages to figure out that you need to use the 'is' keyword to do "assignment". – Matthew Schinckel Nov 27 '08 at 3:16
"is" actually is not "assignment". Instead, it performs a numerical computation on the RHS, and then a unification with the LHS. – Martin v. Löwis Nov 27 '08 at 6:51
feedback

Your Answer

 
or
required, but never shown

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