Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to generate a list of booleans in prolog.

?- gener_booleans(Xs,3).
Xs = [true, true, true] ;
Xs = [true, true, false] ;
...
Xs = [false, false, false] ;

Here is link to another solution, but i do not know how to apply it to booleans. Get all sets of list in prolog Can anybody help? P.S the amount of lists is 2^N. Thanks!

share|improve this question

2 Answers

up vote 1 down vote accepted
gener_booleans([],0).
gener_booleans([true|Xs],N) :- N>0, N1 is N-1, gener_booleans(Xs,N1).
gener_booleans([false|Xs],N) :- N>0, N1 is N-1, gener_booleans(Xs,N1).
share|improve this answer

If your Prolog has the maplist predicate (like SWI and YAP):

booleans(Xs, N) :-
    length(Xs, N),
    maplist(boolean, Xs).
boolean(true).
boolean(false).

(I renamed the predicate booleans because it can also check for booleans; prefer declarative names when programming in Prolog.)

share|improve this answer
Also GNU-Prolog has maplist/2... But only YAP has library(lambda) preinstalled! Permitting: maplist(\X^(X=true;X=false), Xs). BTW: not sure: shall the type be it be bool or boolean? – false Apr 29 '12 at 20:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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