I have written a predicate common_participant(Person, PairEvent). which returns pairs of facts from my knowledge base. I was wondering whether there is any way to perform variable binding and collect all results without using the semicolon every time.

Thanks,

I.

link|improve this question

50% accept rate
I'm not sure I understand the question. Every time what? – Gian Jul 22 '10 at 15:58
feedback

1 Answer

up vote 1 down vote accepted

Yes, you can use findall/3. But depending on what you really want to do, there are often better ways. Do you want to output things? Then try this:

print_participants :-
    common_participant(Person, PairEvent),
    write(Person), write(' participates in '), write(PairEvent), write('.'), nl,
    fail.
print_participants :-
    true.

That way, you don't need to keep all combinations in a large list at the same time, but only the one that is needed for printing.

Edit: Fixed the code, as suggested by Kaarel.

link|improve this answer
Your print_participants/0 doesn't print all the solutions unless you use the semicolon (which the OP wanted to avoid), or call it as "print_participants, fail ; true." – Kaarel Jul 23 '10 at 1:36
I fixed the code. By the way, I interpreted the question like "I don't want to press the semicolon key all the time, just to get all answers". Therefore I think a semicolon in the code doesn't matter. – Roland Illig Jul 23 '10 at 16:32
Yes, that is what I meant Roland, thank you so much. It works fine. – ilariac Jul 30 '10 at 15:05
feedback

Your Answer

 
or
required, but never shown

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