Do not use this tag like Prologue and Epilogue.
GNU Emacs 23.2.1 Fedora xfce 14 I starting to get into Prolog, and I want to use my emacs as the IDE …
emacs prolog emacs23It is a water jug problem. The larger bucket holds 5, the smaller bucket holds 3. I want to get 4 in the …
prolog water-jug-problemI'm new to prolog, and am experimenting with how to get it to stop querying after it finds one answer. …
prolog format prolog-cut prolog-toplevelI'm working on an application in Java, that needs to do some complex logic rule deductions as part of its …
java prolog embedded-language logic-programming constraint-programmingI have a problem in my code with turbo prolog which searches all paths and the shortest path in a …
prolog graph-theory shortest-path turbo-prologHere is what I have understood about Prolog variables. A single underscore stands for anonymous variable, which is like a …
prolog prolog-toplevel prolog-anonymous-variableSuppose you have a database with the following content: son(a, d). son(b, d). son(a, c). son(b, …
prolog prolog-setofI am trying my hands on SWI-Prolog in win xp. I am trying to understand how to split a sentence …
prolog swi-prolog dcgI am trying to implement a list difference routine in prolog. For some reason the following fails: difference(Xs,Ys,…
list prolog set-theoryWhat is the general idea of using breadth-first over the default depth-first search scheme in Prolog? Not taking infinite branches? …
prolog breadth-first-search logic-programming