Tagged Questions
57
votes
24answers
8k views
Real world Prolog usage [closed]
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 you used it for and ...
13
votes
13answers
2k views
Embedded Prolog Interpreter/Compiler for Java
I'm working on an application in Java, that needs to do some complex logic rule deductions as part of its functionality. I'd like to code my logic deductions in Prolog or some other logic/constraint ...
11
votes
12answers
2k 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 seems like there are ...
7
votes
3answers
729 views
Executing prolog code on an iPhone
I currently have the need to execute prolog code in an application I am making. I am aware that Apple probably never would allow something like this in the App Store, but that is not the intention ...
6
votes
4answers
540 views
What is more interesting or powerful: Curry/Mercury/Lambda-Prolog/your suggestion
I would like to ask you about what formal system could be more interesting to implement from scratch/reverse engineer.
I've looked through some existing and rather open (open in the sense of ...
4
votes
3answers
182 views
Shortest way to define multiple rules in prolog
I'm trying to solve an exercise in order to become more familiar with prolog.
The task is following:
% Sten wants to send Lisa 100 flowers. He can choose from lilies, roses and tulips.
% One lily ...
3
votes
1answer
155 views
Relational Clausal Logic question: what is a Herbrand interpretation
I'm having a hard time coming to grips with relational clausal logic, and I'm not sure if this is the place to ask but it would be help me so much with revision if anyone could provide guidance with ...
3
votes
4answers
520 views
Multithreading in… functional languages? (Prolog)
When my friend started learning Prolog in school, I made fun of him for learning a useless language. However, he's showed me some stuff I never even knew possible; I want to know where this technique ...
3
votes
3answers
3k 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 in Prolog? I've been ...
3
votes
1answer
1k 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). --> R = 1
...
2
votes
1answer
130 views
Why cant i get the answer to the zebra puzzle in prolog?
this is my code currently, I am trying to solve the zebra puzzle.
exists(A,(A,_,_,_,_)).
exists(A,(_,A,_,_,_)).
exists(A,(_,_,A,_,_)).
exists(A,(_,_,_,A,_)).
exists(A,(_,_,_,_,A)).
...
2
votes
2answers
69 views
How can I find the input from a list which yields the maximum result from some query in SWI-Prolog?
I'm just picking up Prolog now, so I'm unfamiliar with the normal way of doing most things.
Essentially I have a rule which gives a value from an input:
ScoreFromInput(Input, Score) :- ...
And I ...
2
votes
5answers
257 views
Cool, visually-transmissible uses of Prolog
I will be teaching only one lecture on basic Prolog to students with little to no experience in programming. I'd like them to see that programming and Prolog can be used in the real world, perhaps ...
2
votes
2answers
824 views
Datalog vs CLIPS vs Prolog
As many programmers I studied Prolog in university, but only very little. I understand that Prolog and Datalog are closely related, but Datalog is simpler? Also, I believe that I read that Datalog ...
2
votes
1answer
213 views
How to solve this logical problem with Prolog?
That's my first question so please be tolerant.
I've logical problem to write in prolog/CLP:
"It is known only one character is
telling the truth. Mr April says
Mr May tells lies. Mr May says ...
1
vote
2answers
343 views
Vector addition in prolog
I'm writing a predicate to add two vectors. This is what I came up with:
add( [], [], 0 ).
add( [A], 0, A ).
add( [A], [B], C ) :- C is A + B.
add( A, B, C ) :- add( B, A, C ).
add( [H1|T1], [H2|T2], ...
1
vote
2answers
124 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 work (obviously it ...
0
votes
3answers
510 views
How do I implement GNU Prolog's nth(X,List,Item)?
I'm trying to use an API that's mostly compatible with GNU Prolog. Unfortunately the GNU Prolog predicate nth(X,List,Item) is not there.
How would you implement nth using ISO predicates?
...
0
votes
1answer
381 views
Prolog Nim Game - Out of local stack error
I've been doing some Prolog lately. And I've read The Art Of Prolog book. They have a Nim game implementation there. So I've rewritten it to SWI-Prolog and everything seems fine except this Out of ...
0
votes
2answers
239 views
Prolog: X is the grandfather of Y
Assume that the following facts are already entered into the Prolog database:
father(X, Y) // X is the father of Y
mother(X, Y) // X is the mother of Y
male(X) // X is a male
...
0
votes
2answers
239 views
yap prolog read predicate
I am experimenting with prolog, reading "Programming in prolog using the ISO standard, fith edition". I have installed yap (yet another prolog) on my ubuntu 10.10 Maverick RC system, installed using ...
0
votes
3answers
141 views
Help with prolog's clauses
emissionOf(alpha).
emissionOf(beta).
detected(proton), detected(electron) :- emissionOf(alpha), emissionOf(beta).
I'm facing the problem that for some (probably obvious) reason Prolog doesn't ...