2008-12-14

Re: Practice Final Question 10.

Originally Posted By: mecpollett@gmail.com
On Dec 14, 2008, at 10:27 PM, ekaqu1028@gmail.com wrote: > > g(a,b). > g(b,c). > g(a,d). > g(c,f). > g(f,t). > > connected(X,Y) :- g(X,Y). > connected(X,Z) :- g(X,Y), connected(Y,Z). > > > This one works better than my last one. That's what I wrote on the board. I think it might have
'''Originally Posted By: mecpollett@gmail.com''' On Dec 14, 2008, at 10:27 PM, ekaqu1028@gmail.com wrote: > > g(a,b). > g(b,c). > g(a,d). > g(c,f). > g(f,t). > > connected(X,Y) :- g(X,Y). > connected(X,Z) :- g(X,Y), connected(Y,Z). > > > This one works better than my last one. That's what I wrote on the board. I think it might have
X