vote up 1 vote down star
1

I need to check if a path is valid, true or false. It's given like this:

?-path(a,b,[(a,c),(c,d),(d,b)]).
true

In the list part, how do I access the a or c in (a,c)? Is it like a string"(a,c)"?

And in general how would one solve this type of path finding? Sample code/pseudo is appreciated. Is there a way to make it interpret the tuples () in the list as predicates?

flag

3  
it would be convenient that you would read the bibliography your teacher has surely provided before asking... you'll learn more! – fortran Nov 3 at 17:50
1  
You are correct indeed. So you shouldn't give a straight answer, just point me in the right direction. – misterfixit Nov 3 at 17:57

4 Answers

vote up 1 vote down check

I'll give you an example from when I was a 2nd year student:

% Representation [[a,b],[b,a],[b,c]]:
%
%          a <--> b -->c
%

% Does aexists a path beetween X and Y?
% Example:  path(c,b,[[a,b],[b,c],[d,e],[c,d],[b,e],[e,c],[e,f],[a,a]]). No
%           path(c,f,[[a,b],[b,c],[d,e],[c,d],[b,e],[e,c],[e,f],[a,a]]). Yes

path(X,Y,G):-pathAux(X,Y,G,[]).
pathAux(X,Y,G,_T):-member([X,Y],G).
pathAux(X,Y,G,T) :-member([X,Z],G),not(member([X,Z],T)),
                 append([[X,Z]],T,Tt),pathAux(Z,Y,G,Tt).

I used [a,b] instead of (a,b); but It's the same.

link|flag
vote up 0 vote down

The (a, c) is a compound term, you can access it in a predicate like this:

 my_predicate((A, B)) :-
    print(A),
    print(B).
link|flag
vote up 0 vote down

It's been a while but off the top of my head you'll start with:

path(S, G, [(P, Q) | R]) :- ......

With S meaning start, G meaning goal, P and Q being connected nodes in your graph and R being the rest of your graph.

link|flag
vote up 1 vote down

You have several questions in there...

Is it like a string"(a,c)"?

What do you mean by "like"? Do they unify? Nope.

?- "(a, c)" = (a, c).

No

In the list part, how do I access the a or c in (a,c)?

?- L = [(a, c) | _], L = [(A, C) | _].

L = [ (a, c)|_G184],
A = a,
C = c

Is there a way to make it interpret the tuples () in the list as predicates?

Maybe using call/N, but why would you want to do that?

link|flag

Your Answer

Get an OpenID
or

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