In order to write a procedure satisfy(P,L) which returns the list L of all terms X such that the unary predicate P(X) succeeds. I have attempted the following: satisfy(P,L):- findall(X,call(P(X)),L).

Am I on the right track or I have gone completely off?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

You can do it using builtin predicate call/2:

satisfy(P, L):- findall(X, call(P, X), L).
link|improve this answer
feedback

Not quite. You're on the right track using findall/3, but you can't construct a goal to call by simply stating P(X). You need to construct the term using =../2 instead.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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