vote up 0 vote down star

What's an elegant way to unify X,Y with (1,2), (1,-2), (-1,2), (-1,-2), (2,1), (2,-1) , (-2,1), (-2,-1)?

Doing it this way seems error prone and tedious:

foo(1,2).
foo(1,-2).
foo(-1,-2).
...
...
...

And this way seems too expensive:

foo(X,Y) :-
  L = [1,-1,2,-2],
  member(X,L),
  member(Y,L),
  abs(X,X1), abs(Y,Y1),
  X1 =\= Y1.
flag

2  
This might need a bit of clarification. :P – Noldorin Oct 6 at 13:34
2  
I see an octagon! Flee! – Bears will eat you Oct 6 at 13:37
Added example ^^^ – Absolute0 Oct 6 at 13:37
I was about to suggest something similar to your second "expensive" case... maybe you could use the second case once to add the "unrolled" predicates to the knowledge base? – fortran Oct 6 at 13:42
by using findall(..,foo,..) ? – Absolute0 Oct 6 at 13:44

3 Answers

vote up 1 vote down check

A further development on what was commented:

generate_pairs_foo(X,Y) :-
  L = [1,-1,2,-2],
  member(X,L),
  member(Y,L),
  abs(X,X1), abs(Y,Y1),
  X1 =\= Y1.

assert_all_foo([]).

assert_all_foo([(X,Y)|T]) :-
  assert(foo(X,Y)), assert_all_foo(T).

find_all((X,Y),generate_pairs_foo(X,Y),L), assert_all_foo(L).

Hmmmmmm... look, it's easier and shorter to just write all the cases xD

link|flag
I really think the other's answers are clearer... maybe you should accept one of them (unless you're looking for a solution to bigger and more general cases that cannot be handled that way). – fortran Oct 6 at 18:28
vote up 3 vote down
foo0(X,Y):-
    member(X,[1,-1]),
    member(Y,[2,-2]).

foo(X,Y):-
    foo0(X,Y);
    foo0(Y,X).
link|flag
I'll upvote if you put the ; on a line of its own. – starblue Oct 7 at 18:22
vote up 2 vote down
foo(1, 2).
foo(2, 1).
foo(X, Y) :-
   foo(-X, Y).
foo(X, Y) :-
   foo(X, -Y).
link|flag

Your Answer

Get an OpenID
or

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