Tagged Questions
The logic-programming tag has no wiki summary.
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 ...
23
votes
1answer
568 views
What type systems can prevent goal suspension in logical languages?
From section 3.13.3 of the curry tutorial:
Operations that residuate are called rigid , whereas operations that narrow are called flexible. All defined operations are flexible whereas most ...
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
3answers
177 views
What is the use of non short-circuiting boolean operators in Erlang?
I am learning Erlang from the LearnYouSomeErlang web-book. One thing that struck me while learning was the non short-circuiting boolean conjunction and disjunction operators viz; and and or. What are ...
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 ...
8
votes
1answer
276 views
Function Returns “No Solution” Instead Of “Nothing”
I have a standard datatype representing formulae of predicate logic. A function representing a natural deduction elimination rule for disjunction might look like:
d_el p q =
if p =: (Dis r s) ...
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 ...
6
votes
3answers
374 views
Logic variables support for .NET
I am looking for a library/assembly that allows me to work with logical variables in F#. I want to avoid reinventing the wheel in implementing the required union-find datastructure, unification code ...
5
votes
6answers
206 views
Non-Prolog logic programming
Are there any good non-Prolog or Prolog-based logic programming languages ?
Who has or any good experience with it?
5
votes
2answers
247 views
Relational Programming in Python?
I'm a longtime python developer and recently have been introduced to Prolog. I love the concept of using relations for certain kinds of tasks, and would like to add this to my repertoire.
Are there ...
4
votes
0answers
152 views
Will whole Haskell be a part of Curry? [closed]
I found Curry on Wikipedia. It says Curry is nearly a superset but not because of lacking of something.
I'd like to see it support whole Haskell. Did they plan to implement Haskell as a part of ...
4
votes
3answers
215 views
Language for Logic Programming?
Is there any newer language than Prolog specialized for logical programming ?
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
2answers
226 views
A question about logic and the Curry-Howard correspondence
Could you please explain me what is the basic connection between the fundamentals of logical programming and the phenomenon of syntactic similarity between type systems and conventional logic?
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
5answers
209 views
Logic programming online resources
I might look like a n00b, but I would like to know whether anyone here in SO knows any good online resources on logic programming. I'm working on a huge scheduling application and I have "reduced" the ...
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
1answer
119 views
How does append-to-form work? (SICP's section on Logic Programming)
I am currently working through SICP's section on Logic Programming, but I got stuck in the examples regarding logical deductions, especially the append-to-form rules. How do they work? What I don't ...
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 ...
2
votes
4answers
183 views
What, if any, is wrong with this approach to declarative I/O
I'm not sure exactly how much this falls under 'programming' opposed to 'program language design'. But the issue is this:
Say, for sake of simplicity we have two 'special' ...
2
votes
0answers
114 views
How should I go about implementing a points-to analysis in Maude?
I'm going to implement a points-to analysis algorithm. I'd like to implement this analysis mainly based on the algorithm by Whaley and Lam. Whaley and Lam use a BDD based implementation of Datalog to ...
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
2answers
69 views
“:=” and “=>” in Mercury
I recently came across this code example in Mercury:
append(X,Y,Z) :-
X == [],
Z := Y.
append(X,Y,Z) :-
X => [H | T],
append(T,Y,NT),
Z <= [H | NT].
Being a Prolog programmer, I ...
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
72 views
Reference sought for back chaining algorithm
I am looking for a precise description of the algorithm for inference by back chaining. Whenever I search, I just find the standard example lifted from Russell and Norvig with no formal description of ...
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 ...