vote up 1 vote down star

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

flag

78% accept rate

1 Answer

vote up 3 vote down check
 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|flag
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

Your Answer

Get an OpenID
or

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