Because the built in predicate setof can be used to create an ordered list without duplicates, can I use it to test whether a list represents a set with no duplicates in this way:

no_duplicates(L):- setof(_,_,L).
link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

You cannot use it in exactly the way you describe. BUT, You can use setof to determine if a list is a set if you ask it to iterate through your list for members, then check the set against the original. If they have the same length, then all elements were unique.

no_duplicates(L) :-
    setof(X, member(X, L), Set), 
    length(Set, Len), 
    length(L, Len).
link|improve this answer
feedback

You can't. Your arguments are not sufficiently instantiated.

if you are using swi prolog there is a predicate is_set in the lists module.

http://www.swi-prolog.org/pldoc/doc_for?object=section(2,'A.12',swi('/doc/Manual/lists.html'))

link|improve this answer
Is there another way to check if I am not using swi prolog? – General_9 Jan 25 at 16:54
feedback

Your Answer

 
or
required, but never shown

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