hey everyone,
got a small problem with prolog : I'm trying to create a basic graph searching algorythm (I want to reach A from B and I have the rule connection(X,Y))and I think the variables aren't getting instanced:
%direct link between the 2
i_aux(Loc1, Loc2, Visited, [Loc2|Visited]) :-...