I am completely new to Prolog and trying some exercises. One of them is:

Write a predicate set(InList,OutList) which takes as input an arbitrary list, and returns a list in which each element of the input list appears only once.

Here is my solution:

member(X,[X|_]).
member(X,[_|T]) :- member(X,T).

set([],[]).
set([H|T],[H|Out]) :-
    not(member(H,T)),
    set(T,Out).
set([H|T],Out) :-
    member(H,T),
    set(T,Out).

I'm not allowed to use any of built-in predicates (It would be better even do not use not/1). The problem is, that set/2 gives multiple same solutions. The more repetitions in the input list, the more solutions will result. What am I doing wrong? Thanks in advance.

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

You are getting multiple solutions due to Prolog's backtracking. Technically, each solution provided is correct, which is why it is being generated. If you want just one solution to be generated, you are going to have to stop backtracking at some point. This is what the Prolog cut is used for. You might find that reading up on that will help you with this problem.

Update: Right. Your member() predicate is evaluating as true in several different ways if the first variable is in multiple positions in the second variable.

I've used the name mymember() for this predicate, so as not to conflict with GNU Prolog's builtin member() predicate. My knowledge base now looks like this:

mymember(X,[X|_]).
mymember(X,[_|T]) :- mymember(X,T).

not(A) :- \+ call(A).

set([],[]).
set([H|T],[H|Out]) :-
    not(mymember(H,T)),
    set(T,Out).
set([H|T],Out) :-
    mymember(H,T),
    set(T,Out).

So, mymember(1, [1, 1, 1]). evaluates as true in three different ways:

| ?- mymember(1, [1, 1, 1]).

true ? a

true

true

no

If you want to have only one answer, you're going to have to use a cut. Changing the first definition of mymember() to this:

mymember(X,[X|_]) :- !.

Solves your problem.

Furthermore, you can avoid not() altogether, if you wish, by defining a notamember() predicate yourself. The choice is yours.

link|improve this answer
The cuts discussed in the end of the book. I haven't read about them yet. So, if this predicate gives multiple same answers and all of them is right, technically, I solved this exercise? :) – Shark Feb 14 '10 at 11:35
OK, my Prolog's rusty, and I don't have an environment to hand, but I can't see how you're getting multiple results in this particular case. I'm assuming that you're calling set() with the first variable bound and the second unbound. In this case, I would expect set() to produce multiple values for the second variable only if not() or member() produced multiple results, and I'm not convinced that either would. Follow evaluation through step-by-step to see where your multiple results come from, and you'll get a bit more of an insight than I can offer you at the moment into what's happening. – Tim Feb 14 '10 at 12:08
I've now found and installed GNU Prolog, and it doesn't have a not() predicate. Could you outline how your not() predicate is defined? – Tim Feb 14 '10 at 13:09
not(A) :- \+ call(A). – Shark Feb 14 '10 at 13:23
Thank you, now I understand why it gets multiple answers! :) – Shark Feb 15 '10 at 14:27
feedback

This works without cut, but it needs more lines and another argument. If I change the [H2|T2] to S on line three, it will produce multiple results. I don't understand why.

setb([],[],_).
setb([H|T],[H|T2],A) :- not(member(H,A)),setb(T,T2,[H|A]).
setb([H|T],[H2|T2],A) :- member(H,A),setb(T,[H2|T2],A).
setb([H|T],[],A) :- member(H,A),setb(T,[],A).
set(L,S) :- setb(L,S,[]).
link|improve this answer
feedback

A simpler (and likely faster) solution is to use library predicate sort/2 which remove duplicates in O(n log n). Definitely works in Yap prolog and SWIPL

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.