21
votes
18answers
2k views
Real world Prolog usage
Many study Prolog in college, but I have personally not come in contact with it professionally. The traditional examples given are AI and expert system applications, but what have …
1
vote
1answer
31 views
Documentation for the Prolog dialect Prova
I would like to switch from SWI-Prolog to Prova - but it seems to be harder than expected:
Predicates like succ() are not available and operations like Var1+Var2>Var3 do not w …
0
votes
2answers
310 views
Breadth-First in Prolog
What is the general idea of using breadth-first over the default depth-first search scheme in Prolog?
Not taking infinite branches?
Is there any general way to use breadth-first …
8
votes
13answers
900 views
Why hasn’t logic programming caught on?
As time goes by, it appears more and more like functional programming is having more of an effect on other programming languages. We're starting on Prolog in my AI class, and it s …
2
votes
1answer
310 views
Prolog operator precedence and rules matching
I have the next two facts loaded in my prolog interpreter:
foo(U+V,1).
foo(U*V,2).
Now I try the next queries with that results:
foo(x*x+x,R). --> R = 1
foo(x+x*x,R). --& …
