Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: jwdavis
  • Content: Threads
  • Order by date
  1. jwdavis

    Trying toconceptualize what these edges and facts define.

    I've never done anything in Prolog, and I'm terribly ignorant of what even the simplest of Prolog programs are doing. I'm presented with such a Prolog program such as this: edge(a,b). edge(b,c). edge(c,d). edge(b,e). edge(a,e). path(X,Y):- edge(X,Y). path(X,Z):- edge(X,Y), path(Y,Z). For the...

Part and Inventory Search

Back
Top