Prolog is the most commonly used logic programming language. It supports non-deterministic programming through backtracking and pattern matching through unification.

learn more… | top users | synonyms

44
votes
11answers
7k views

Good beginners material on Prolog [closed]

I am looking for good beginners material on Prolog, both online and printed. I am not only interested in 'learning the language' but also in background and scientific information.
5
votes
2answers
359 views

What is the difference between ' and " in Prolog?

I am new to Prolog and noticed that ' and " give different behavior, but am curious as to why. Specifically, when loading a file, ?- ['test1.pl']. works, while ?- ["test1.pl"]. doesn't.
7
votes
3answers
532 views

Stack overflow in Prolog DCG grammar rule: how to handle large lists efficiently or lazily

I'm parsing a fairly simple file format consisting of a series of lines, each line having some space separated fields, that looks like this: l 0x9823 1 s 0x1111 3 l 0x1111 12 ⋮ I'm using ...
83
votes
24answers
15k 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 ...
1
vote
2answers
420 views

Building an Expression Tree in Prolog

I'm looking for a way to build an Expression Tree in Prolog. I already did some experiments and came up with the following working code (that will only handle constants and the plus expression): ...
23
votes
9answers
8k views

Integrating Prolog with C#

Does anyone know of a nice (and preferably free) way to integrate Prolog and C#? Im looking to create a Prolog dll or similar to call from my managed code, and retrieve an answer once all the ...
4
votes
2answers
295 views

count the number of calls of a clause

I have a clause like following: lock_open:- conditional_combination(X), equal(X,[8,6,5,3,6,9]),!, print(X). this clause succeed. But I want to know how many times ...
6
votes
2answers
5k views

Logical not in Prolog

The problem that I face, is a bit trivial. I want to use logical not in Prolog, but it seems that not/1 is not the thing that I want: course(ai). course(pl). course(os). have(X,Y) :- ...
7
votes
2answers
612 views

Prolog successor notation yields incomplete result and infinite loop

I start to learn Prolog and first learnt about the successor notation. And this is where I find out about writing Peano axioms in Prolog. See page 12 of the PDF: sum(0, M, M). sum(s(N), M, s(K)) :- ...
9
votes
5answers
2k views

prolog to SQL converter

Without thinking to much, it seems to me that a large set of Prolog's functionality could be implemented as relational calculus (a.k.a. SQL). Has anyone heard of any tools to automatically convert ...
9
votes
5answers
553 views

Lazy lists in Prolog?

Is it possible to have lazy lists in Prolog? Something like the following: ones([1 | Y]) :- ones(Y). Although this obviously doesn't work as it's written.
6
votes
4answers
681 views

Prolog - DCG parser with input from file

As part of a project I need to write a parser that can read a file and parse into facts I can use in my program. The file structure looks as follows: property = { el1 , el2 , ... }. What I ...
5
votes
4answers
278 views

Prolog append with cut operator

What problem can occur when we use append with cut operator? append2([],L,L):-!. append2([H|T],L,[H|TL]):-append2(T,L,TL). I have tried several different inputs, but it always succeeds. ?- ...
7
votes
2answers
220 views

Reification of term equality/inequality

Pure Prolog programs that distinguish between the equality and inequality of terms in a clean manner suffer from execution inefficiencies ; even when all terms of relevance are ground. A recent ...
2
votes
2answers
97 views

Prolog replace “+” with “-”

I wish to write a predicate invert(X, Y), that holds when Y is X but with every occurence of + replaced with -. e.g. ?- invert(2 + 3, 2 - 3). yes. e.g. ?- invert(3 + (2 + 4), X). X = 3 - (2 - ...
1
vote
3answers
300 views

read file and construct facts in prolog

I would like to construct a mechanism that constructs different facts depending from txt file, imported in prolog. I already have found some examples where they directly assert the line that was read ...
1
vote
1answer
961 views

A program that finds the Kth largest element in a list

Am writing a logic program for kth_largest(Xs,K) that implements the linear algorithm for finding the kth largest element K of a list Xs. The algorithm has the following steps: Break the list into ...
23
votes
12answers
4k 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 ...
12
votes
1answer
8k views

Prolog - ASSERT and RETRACT

I was wondering, I am aware you can use assert to add facts or rules or whatever if you have declared the predicate to be -:dynamic, but this only allows the changes that are made to be kept in that ...
10
votes
2answers
1k views

Prolog GNU - Univ operator? Explanation of it

So the univ operator. I don't exactly understand it. For example this: foo(PredList,[H|_]) :- bar(PredList,H). foo(PredList,[_|T]) :- foo(PredList,T),!. bar([H|_],Item) :- G =.. [H,Item],G. ...
5
votes
1answer
2k views

Prolog map procedure that applies predicate to list elements

How do you write a prolog procedure map(List, PredName, Result) that applies the predicate PredName(Arg, Res) to the elements of List, and returns the result in the list Result. For Example: ...
3
votes
1answer
145 views

Prolog Compatibility Layers - available programming libraries

There is a lack of some predicates in one Prolog implementations, that are available in others. We can implement lacking predicates, let's call this "Prolog Compatibility Layer". Do you know "Prolog ...
3
votes
2answers
5k views

Read a file line by line in Prolog

I'd like to read a plain text file and apply a predicate to each line (the predicates contain write which does the output). How would I do that?
9
votes
3answers
2k views

Prolog - unusual cons syntax for lists

I have come across an unfamiliar bit of Prolog syntax in Lee Naish's paper Higher-order logic programming in Prolog. Here is the first code sample from the paper: % insertion sort (simple version) ...
6
votes
2answers
137 views

A searchable Prolog language description online

Is there a description of Prolog language (syntax and semantics) available online? There are a lot of tutorials. And there are reference manuals for implementations. But neither of those is a ...
4
votes
1answer
486 views

Simple PROLOG issue: How do you test multiple queries against your Prolog database?

I have a Prolog database file (test_inserts.p) that I used to insert all my data. I also have a Prolog query file (test_queries.pl) that has all of the Prolog queries I wrote up to receive specific ...
3
votes
2answers
1k views

How do I append lists in prolog?

How do I append lists in prolog? I've searched in the internet and I found this (from http://www.csupomona.edu/~jrfisher/www/prolog_tutorial/2_7.html) append([X|Y],Z,[X|W]) :- append(Y,Z,W). ...
3
votes
4answers
620 views

Faster implementation of verbal arithmetic in Prolog

I already made a working generalized verbal arithmetic solver in Prolog but it's too slow. It takes 8 minutes just to run the simple expression S E N D + M O R E = M O N E Y. Can someone help me to ...
3
votes
3answers
666 views

What are the pros and cons of using manual list iteration vs recursion through fail

I come up against this all the time, and I'm never sure which way to attack it. Below are two methods for processing some season facts. What I'm trying to work out is whether to use method 1 or 2, ...
2
votes
1answer
493 views

best structure Graph to implement Dijkstra in prolog

The question is simple. How can i struct my Graph in SWI prolog to implement the Dijkstra's algorithm? I have found this but it's too slow for my job. thx in advance
2
votes
2answers
320 views

Explanation of a prolog algorithm

This is an algorithm to append together 2 lists Domains list= integer* Predicates nondeterm append(list, list, list) Clauses append([], List, List):-!. append([H|L1], List2, [H|L3]) :-append(L1, ...
2
votes
5answers
281 views

Prolog List Plateau

Just got introduced to prolog, trying to get through some simple exercises, but I've been getting kind of stuck on this one. I'm trying to write a program that outputs all the sublists of the input ...
1
vote
3answers
416 views

What's wrong with my prolog program for solving the 3 jugs of water puzzle?

Can anyone find why I can't have any true answers with my 'go' at this code? For example, I write go(7,3,l) and I suppose that it should move 3 litres of water to the second jug, but it is false ...
1
vote
3answers
2k views

Prolog Beginner: How to make unique values for each Variable in a predicate.

I have a prolog predicate: Add( [A|B] , Answer ) :- ... ~ Add everything in the list to come up with answer ... I would now like to implement AddUnique that would return unique values ...
0
votes
2answers
134 views

Using SWI-Prolog Interactively - Output Taken off

I'm using SWI-Prolog interactively. When I run my query, I get a prefix of the output and the rest is taken off (marked using the string ...|...). Is this normal or should I go back and fix my ...
0
votes
4answers
3k views

How do I find the longest list in a list of lists?

I have a list of lists, and I need to find the longest one of them. If there are more than one with the same length it's the same which it returns. Thanks.
5
votes
5answers
2k views

Solving a logic puzzle using Prolog

The criminal is one of A, B, C and D. A says: "It's not me" B says: "It's D" C says: "It's B" D says: "It's not me" And we know that only one of them tells the truth. Who is the one? I ...
7
votes
3answers
597 views

Reversible numerical calculations in Prolog

While reading SICP I came across logic programming chapter 4.4. Then I started looking into the Prolog programming language and tried to understand some simple assignments in Prolog. I found that ...
3
votes
5answers
1k views

Beginner in PROLOG [closed]

What book would you recommend for a beginner in PROLOG? I currently know Perl.
4
votes
2answers
1k views

RegEx Parser written in Prolog

I've been banging my head against the wall on this homework problem for a few hours now. We have to parse a regular expression with Prolog. For the most part, the predicates I have work, but there's ...
1
vote
5answers
1k views

Max out of values defined by prolog clauses

I know how to iterate over lists in Prolog to find the maximum, but what if each thing is a separate clause? For example if I had a bunch of felines and their ages, how would I find the oldest kitty? ...
4
votes
3answers
2k views

Help solving a logic puzzle in prolog

I am reading "Learn Prolog Now" and one of its exercises I haven't been able to solve myself is the following: There is a street with three neighboring houses that all have a different color. ...
2
votes
3answers
268 views

Prolog - get the factors for a given number doesn't stop?

I need to find the factors of a given number , e.g : ?- divisors2(40,R). R = [40,20,10,8,5,4,2,1]. The code : % get all the numbers between 1-X range(I,I,[I]). range(I,K,[I|L]) :- I < K, I1 ...
6
votes
3answers
584 views

Optimizing pathfinding in Constraint Logic Programming with Prolog

I am working on a small prolog application to solve the Skyscrapers and Fences puzzle. An unsolved puzzle: A solved puzzle: When I pass the program already solved puzzles it is quick, almost ...
5
votes
3answers
571 views

Parsing numbers with multiple digits in Prolog

I have the following simple expression parser: expr(+(T,E))-->term(T),"+",expr(E). expr(T)-->term(T). term(*(F,T))-->factor(F),"*",term(T). term(F)-->factor(F). factor(N)-->nat(N). ...
4
votes
3answers
374 views

Prolog arithmetic syntax

How to define a as a integer/float number ? I want to find the results of a+b+c+d=10 where a,b,c,d is integer and >=0.
3
votes
4answers
159 views

How does recursion in Prolog works from inside. One example

I've got here a small script, that converts list of elements into a set. For example list [1,1,2,3] -> set [1,2,3]. Can somebody explain to me, step by step, whats happening inside those procedures? ...
3
votes
1answer
171 views

DCG Expansion: Is Steadfastness ignored?

Assume I have the following DCG rule: factor(X) --> "(", expr(X), ")". Normally this would be translated to: factor(X, A, B) :- [40|C] = A, expr(X, C, D), [41|B] = D. Would a Prolog ...
2
votes
2answers
343 views

how to visit each point in directed graph

In Prolog, how can I implement graph algorithm in order to find all path in order to implement travel salesman problem in directed graph ? example : ...
1
vote
1answer
285 views

Prolog- translating English to C

We have a relatively simple assignment that I understand in theory but I think I just don't quite understand Prolog's syntax enough to get that into code. Basically, we have a list of English ...

1 2 3 4 5 7