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).
|
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:
| |||
|
feedback
|
|
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.
| |||
|
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')) | |||
|
feedback
|