A failure-slice is a fragment of a Prolog program obtained by adding some goals `false`. Failure-slices help to localize reasons for universal non-termination of a pure monotonic Prolog program. They also help to give a lower bound for the number of inferences needed. It is a concrete ...

learn more… | top users | synonyms

3
votes
2answers
75 views

English constraint free grammar prolog

I ran into an infinite recursion problem while trying to implement a very simple constraint free grammar in prolog. Here are my rules: (vp -> verb phrase, np -> noun phrase, ap -> adj phrase, pp -> ...
1
vote
3answers
182 views

Prolog infinite loop

This is a program that should find out who is compatible with john. I am new to Prolog. In order to let Prolog know eg. met(X,Y) = met (Y,X) lots of code has been written. Now when I start the query ...
2
votes
1answer
90 views

Computational complexity of recursion in prolog

I've got a recursion: list_to_set([],[]). list_to_set([A|X],[A|Y]):- list_to_set(X,Y), \+member(A,Y). list_to_set([A|X],Y):- list_to_set(X,Y), member(A,Y). It converts list of ...
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? ...
2
votes
3answers
269 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 ...
4
votes
2answers
96 views

prolog dcg restriction

I would like to use DCGs as a generator. As of now, the syntax is s-->a,b. a-->[]. a-->a,c. c-->[t1]. c-->[t2]. b-->[t3]. b-->[t4]. I would like to generate all s where the ...
4
votes
1answer
91 views

Backtracking in recursive predicates

Assume we have the following predicates (This is an example from Programming in Prolog): [F0] isInteger(0). [F1] isInteger(X):- isInteger(Y), X is Y+1. The first result for query isInteger(R), the ...
3
votes
2answers
99 views

Reversible tree length relation

I'm trying to write reversible relations in "pure" Prolog (no is, cut, or similar stuff. Yes it's homework), and I must admit I don't have a clue how. I don't see any process to create such a thing. ...
1
vote
1answer
79 views

list shift in Prolog

The following code results in an infinite loop with an eventual "Out of Local Stack" error Basically I am decrementing the value of GX until it is the same as MX. Sample input [[m,g,b],[w,w,w]],Path ...
1
vote
2answers
151 views

DCG and left recursion

I am trying to implement a dcg that takes a set of strings of the form {a,b,c,d}*.The problem i have is if I have a query of the form s([a,c,b],[]),It returns true which is the right answer but when i ...
3
votes
2answers
172 views

SWI Prolog does not terminate

:- use_module(library(clpfd)). fact(treated=A) :- A in 0..1. fact(numYears=B) :- B in 0..sup. fact(numDrugs=C) :- C in 0..sup. fact(treated2=D) :- D in 0..1. fact(cParam=E) :- E in 0..4. ...
2
votes
1answer
596 views

Prolog: check if two lists have the same elements

I am new to Prolog and I am having a problem with a function that checks if two lists have exactly the same elements. It is possible for the elements to be in different orders. I have this: ...
2
votes
2answers
340 views

Regular Expression Matching Prolog

I am just learning Prolog, and I am trying to do Regular Expression matching. I have all the functions written out, but they are not working as they should. From what I can tell, it has a problem ...
1
vote
2answers
118 views

Transforming a sentence creates an infinite loop - but how?

I can't figure out where this is going wrong. Please note that I am very new to Prolog and I'm sure I'm missing something - just no idea what that might be. Could anyone help me out please? Thanks, ...
1
vote
1answer
290 views

Prolog: pythagorean triple

I have this code that uses an upper bound variable N that is supposed to terminate for X and Y of the pythagorean triple. However it only freezes when it reaches the upper bound. Wasn't sure how to ...
3
votes
2answers
135 views

Why does Prolog crash in this simple example?

likes(tom,jerry). likes(mary,john). likes(mary,mary). likes(tom,mouse). likes(jerry,jerry). likes(jerry,cheese). likes(mary,fruit). likes(john,book). likes(mary,book). likes(tom,john). ...
7
votes
2answers
613 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)) :- ...
3
votes
2answers
447 views

Prolog predicate - infinite loop

I need to create a Prolog predicate for power of 2, with the natural numbers. Natural numbers are: 0, s(0), s(s(0)) ans so on.. For example: ?- pow2(s(0),P). P = s(s(0)); false. ?- pow2(P,s(s(0))). ...
2
votes
4answers
101 views

Prolog: Error out of global stack with what looks like ONE level of recursion to me

I am quite rusty in prolog, but I am not sure why things like this fail: frack(3). frack(X) :- frack(X-1). So, if I evaluate frack(4). from the interactive prompt with the above facts defined, I ...
5
votes
2answers
119 views

Why does this command cause a stack overflow in prolog?

I have the following snippet of prolog code: num(0). num(X) :- num(X1), X is X1 + 1. fact(0,1) :-!. fact(X,Y) :- X1 is X-1, fact(X1,Y1), !, Y is Y1 * X. fact(X) :- num(Y), fact(Y,X). Can somebody ...