Why does Prolog match (X, Xs) with a tuple containing more elements? An example:
test2((X, Xs)) :- write(X), nl, test2(Xs).
test2((X)) :- write(X), nl.
test :-
read(W),
test2(W).
?- test.
|: a, b(c), d(e(f)), g.
a
b(c)
d(e(f))
g
yes
Actually this is what I want to achieve but it seems suspicious. Is there any other way to treat a conjunction of terms as a list in Prolog?
Tuple term construction with the
,/2operator is generally right-associative in PROLOG (typically referred to as a sequence), so your input ofa, b(c), d(e(f)), gmight well actually be the term(a, (b(c), (d(e(f)), g))). This is evidenced by the fact that your predicatetest2/1printed what is shown in your question, where on the first invocation of the first clause oftest2/1,XmatchedaandXsmatched(b(c), (d(e(f)), g)), then on the second invocationXmatchedb(c)andXsmatched(d(e(f)), g), and so on.If you really wanted to deal with a list of terms interpreted as a conjunction, you could have used the following:
…on input
[a, b(c), d(e(f)), g]. The list structure here is generally interpreted a little differently from tuples constructed with,/2(as, at least in SWI-PROLOG, such structures are syntactic sugar for dealing with terms constructed with./2in much the same way as you’d construct sequences or tuple terms with,/2). This way, you get the benefits of the support of list terms, if you can allow list terms to be interpreted as conjunctions in your code. Another alternative is to declare and use your own (perhaps infix operator) for conjunction, such as&/2, which you could declare as:You could then construct your conjunct as
a & b(c) & d(e(f)) & gand deal with it appropriately from there, knowing exactly what you mean by&/2– conjunction.See the manual page for
op/3in SWI-PROLOG for more details – if you’re not using SWI, I presume there should be a similar predicate in whatever PROLOG implementation your’e using — if it’s worth it’s salt 🙂EDIT: To convert a tuple term constructed using
,/2to a list, you could use something like the following: