active questions tagged prolog - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T17:43:52Z http://stackoverflow.com/feeds/tag/prolog http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1801998/parsing-with-dcgs-in-scheme-without-prolog 2 Parsing with DCGs in Scheme (without Prolog)? z5h 2009-11-26T07:05:10Z 2009-11-26T07:05:10Z <p>Lots of Prolog-in-Scheme implementations are out there. E.g. Kanren, Schelog.</p> <p>Apparently in "Paradigms of AI Programming" Norvig implements Prolog-to-Lisp compiler in Lisp in order to use Definite Clause Grammars.</p> <p>But is there a simpler cleaner way? Maybe some clever use of amb to avoid implementing a full "Prolog"? What is the easiest way to have DCG-based parsing in Scheme? </p> http://stackoverflow.com/questions/1782655/swi-prolog-conditional-not 0 SWI Prolog - conditional NOT? RB58 2009-11-23T11:46:48Z 2009-11-24T15:50:19Z <p>Hi,</p> <p>I'm trying to make a prolog function. The funtion reads in a sentance, and then tries to extract a key word. If a key word is found, it prints a message. I want it to also print a message if no keywords are found. Here is my example : </p> <pre><code>contains([word1|_]) :- write('word1 contained'). contains([Head|Tail]) :- Head \= word1, contains(Tail). contains([word2|_]) :- write('word2 contained'). contains([Head|Tail]) :- Head \= word2, contains(Tail). contains([word3|_]) :- write('word3 contained'). contains([Head|Tail]) :- Head \= word3, contains(Tail). </code></pre> <p>The above code will check and see if the extracted word is present. But it does not give an answer if the words 'word1,word2 or word3' are not contained. Does anybody know how I should go about implementing this?</p> <p>I tried adding : </p> <pre><code>contains([_|_]) :- write('nothing contained'),nl. contains([Head|Tail]) :- Head \= _, contains(Tail). </code></pre> <p>But clearly this is the wrong thing to do.</p> http://stackoverflow.com/questions/1787308/members-predicate-in-prolog 0 members predicate in Prolog Juanjo Conti 2009-11-24T01:55:32Z 2009-11-24T10:54:27Z <p>I'd like to define a members predicate.</p> <p>members(A, B) means that all members of the list A are members of list B. top(N) defines how long A can be.</p> <p>This is my try:</p> <pre><code>top(5). members([X], L):- member(X, L). members([X| Xs], L):- member(X, L), members(Xs, L), length(Xs, M), top(N), M &lt; N. </code></pre> <p>I'd like to use it as follow:</p> <pre><code>members(L, [1,2,3]). </code></pre> <p>The problem with my implementation is that if I ; to get new answers, I'll finish with an ERROR: Out of local stack</p> <pre><code>?- members(I, [1,2,3]). I = [1] ; I = [2] ; I = [3] ; I = [1, 1] ; I = [1, 2] ; I = [1, 3] ; I = [1, 1, 1] ; I = [1, 1, 2] ; I = [1, 1, 3] ; I = [1, 1, 1, 1] ; I = [1, 1, 1, 2] ; I = [1, 1, 1, 3] ; I = [1, 1, 1, 1, 1] ; I = [1, 1, 1, 1, 2] ; I = [1, 1, 1, 1, 3] ; ;ERROR: Out of local stack </code></pre> <p>How can I change my code to prevent this out of memory?</p> http://stackoverflow.com/questions/1786365/compute-a-list-of-distinct-odd-numbers-if-one-exists-such-that-their-sum-is-eq 1 Compute a list of distinct odd numbers (if one exists), such that their sum is equal to a given number. nubela 2009-11-23T22:03:35Z 2009-11-24T08:13:31Z <pre><code>:- use_module(library(clpfd)). % load constraint library % [constraint] Compute a list of distinct odd numbers (if one exists), such that their sum is equal to a given number. odd(Num) :- Num mod 2 #= 1. sumOfList([],N,N) :- !. sumOfList([H|T],Counter,N) :- NewN #= H + Counter, sumOfList(T,NewN,N). buildOddList(N,InputList,L) :- %return list when sum of list is N V in 1..N, odd(V), append(InputList,[V],TempL), sumOfList(TempL,0,N)-&gt; L = TempL; buildOddList(N,TempL,L). computeOddList(N) :- buildOddList(N,[],L), label(L). </code></pre> <p>This is my code, I can't seem to get the right output, any code critics? :)</p> http://stackoverflow.com/questions/1777272/complexity-in-prolog-programs 1 Complexity in Prolog programs? Juanjo Conti 2009-11-22T00:15:56Z 2009-11-22T22:53:10Z <p>In Prolog, problems are solved using backtracking. It's a declarative paradigm rather than an imperative one (like in C, PHP or Python). In this kind of languages is it worth to think in terms of complexity?</p> <p>The natural way you think problems seems to be O(N^2) as someone pointed in <a href="http://stackoverflow.com/questions/1660152/prolog-find-the-longest-list-in-a-list-of-lists/1682907#1682907">this question</a>.</p> http://stackoverflow.com/questions/1779045/prolog-list-question 1 Prolog list question jen 2009-11-22T15:31:34Z 2009-11-22T17:23:02Z <p>I have a database consisting of the following rules;</p> <pre><code>speaks(fred [german, english, dutch]). speaks(mary [spanish, arabic, dutch]). speaks(jim [norwegian, italian, english]). speaks(sam [polish, swedish, danish]). </code></pre> <p>etc</p> <p>As part of a much larger program, how would I find out 3 people who speak the same language?</p> <p>Jen</p> http://stackoverflow.com/questions/1775651/whats-the-operator-in-prolog-and-how-can-i-use-it 0 What's the -> operator in Prolog and how can I use it? Juanjo Conti 2009-11-21T14:43:55Z 2009-11-22T05:17:07Z <p>I've read about it in a book but it wasn't explained at all. I also never saw it in a program. Is part of Prolog syntax? What's it for? Do you use it?</p> <p>Thanks</p> http://stackoverflow.com/questions/1768274/prolog-learning-by-example 1 Prolog : Learning by example Ahmad P. 2009-11-20T04:05:10Z 2009-11-21T16:14:49Z <p>I am trying to learn a little bit about swi-prolog (beyond the basic, useless programs).</p> <p>Can anyone explain (perhaps in pseudocode) what this sudoku solver and the related functions are doing? If you need more reference it is found in the CLP(FD) package of swi-prolog.</p> <p>Thanks!</p> <pre><code>| sudoku(Rows) :- | | length(Rows, 9), maplist(length_(9), Rows), | | append(Rows, Vs), Vs ins 1..9, | | maplist(all_distinct, Rows), | | transpose(Rows, Columns), maplist(all_distinct, Columns), | | Rows = [A,B,C,D,E,F,G,H,I], | | blocks(A, B, C), blocks(D, E, F), blocks(G, H, I). | | | | length_(L, Ls) :- length(Ls, L). | | | | blocks([], [], []). | | blocks([A,B,C|Bs1], [D,E,F|Bs2], [G,H,I|Bs3]) :- | | all_distinct([A,B,C,D,E,F,G,H,I]), | | blocks(Bs1, Bs2, Bs3). | | | | problem(1, [[_,_,_,_,_,_,_,_,_], | | [_,_,_,_,_,3,_,8,5], | | [_,_,1,_,2,_,_,_,_], | | [_,_,_,5,_,7,_,_,_], | | [_,_,4,_,_,_,1,_,_], | | [_,9,_,_,_,_,_,_,_], | | [5,_,_,_,_,_,_,7,3], | | [_,_,2,_,1,_,_,_,_], | ||____________[_,_,_,_,4,_,_,_,9]]).________________________________ || </code></pre> http://stackoverflow.com/questions/1771029/substitute-in-a-nested-list-prolog 2 substitute in a nested list (prolog) lala 2009-11-20T15:03:30Z 2009-11-20T20:25:44Z <p>/* substitute(X,Y,Xs,Ys) is true if the list Ys is the result of substituting Y for all occurrences of X in the list Xs.</p> <p>This is what I have so far:</p> <pre><code>subs(_,_,[],[]). subs(X,Y,[X|L1],[Y|L2]):- subs(X,Y,L1,L2). subs(X,Y,[H|L1],[H|L2]):- X\=H, not(H=[_|_]), subs(X,Y,L1,L2). subs(X,Y,[H|_],[L2]):- X\=H, H=[_|_], subs(X,Y,H,L2). </code></pre> <p>My code works except it omits the elements following the nested list. For example:</p> <pre><code>?- subs(a,b,[a,[a,c],a],Z). Z = [b, [b, c]] . </code></pre> <p>What should I add to this program?</p> http://stackoverflow.com/questions/1759877/can-you-get-a-job-thanks-to-your-prolog-skills 6 Can you get a job thanks to your Prolog skills? Juanjo Conti 2009-11-18T23:31:26Z 2009-11-20T15:38:33Z <p><a href="http://stackoverflow.com/questions/1744208/prolog-member-predicate-one-liner">This Prolog question</a> is introduced as an interview question. Can you get a job thanks to your Prolog skills? Is it used in the industry? (ok, ok, a job can be out of the industry too).</p> http://stackoverflow.com/questions/1763021/prolog-why-this-strange-trace 0 prolog - why this strange trace GOLDfish 2009-11-19T12:39:51Z 2009-11-19T12:45:14Z <p>here is the prolog code (which i sort of follow).</p> <pre><code>len([],0). len([_|T],N) :- len(T,X), N is X+1. </code></pre> <p>and here is the trace for it (im running linux, swi)</p> <pre><code> [trace] ?- len([d,f,w,c],X). Call: (7) len([d, f, w, c], _G314) ? Call: (8) len([f, w, c], _L182) ? Call: (9) len([w, c], _L201) ? Call: (10) len([c], _L220) ? Call: (11) len([], _L239) ? Exit: (11) len([], 0) ? ^ Call: (11) _L220 is 0+1 ? ^ Exit: (11) 1 is 0+1 ? Exit: (10) len([c], 1) ? ^ Call: (10) _L201 is 1+1 ? ^ Exit: (10) 2 is 1+1 ? Exit: (9) len([w, c], 2) ? ^ Call: (9) _L182 is 2+1 ? ^ Exit: (9) 3 is 2+1 ? Exit: (8) len([f, w, c], 3) ? ^ Call: (8) _G314 is 3+1 ? ^ Exit: (8) 4 is 3+1 ? Exit: (7) len([d, f, w, c], 4) ? X = 4. </code></pre> <p>i know prolog runs down these 'trees' but im having trouble figuring out why the increment to the variable is only done when it is exiting - any explainations of the mechanics of this?</p> <p>Many thanks!</p> http://stackoverflow.com/questions/130097/real-world-prolog-usage 22 Real world Prolog usage Hank 2008-09-24T21:29:26Z 2009-11-19T00:23:05Z <p>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 what made Prolog a suitable language for the task?</p> http://stackoverflow.com/questions/1739878/prolog-pascal-triangle 1 prolog pascal triangle thisnotmyname 2009-11-16T03:24:37Z 2009-11-18T04:49:38Z <p>hi is there anybody know how can i do the pascal nth row when i ask for :? pascal(2,Row). i get Row=[1,2,1] ??</p> <p>please help me</p> http://stackoverflow.com/questions/1747863/how-to-determine-whether-two-list-have-same-element-in-prolog 0 How to determine whether two list have same element in prolog? ccdavid 2009-11-17T10:17:36Z 2009-11-18T04:42:54Z <p>How to determine whether two list have same element in prolog? If i have two list A and B, i want to know whether they have the same element.</p> http://stackoverflow.com/questions/1752380/given-1-2-3-in-prolog-get-back-6-5-3-by-reverse-accumalation 0 Given [1,2,3] in prolog get back [6,5,3] by reverse accumalation Dan 2009-11-17T22:38:33Z 2009-11-17T22:58:52Z <p>Q. Given [1,2,3] in prolog get back [6,5,3] by reverse accumalation</p> <p>I have the start code:</p> <p>accumalate([H],[H]).</p> <p>accumalate([H1 | H2], [Hnew, H2]), Hnew is H1 + H2.</p> <p>....</p> <p>I am looking for basic prolog solution. thanks guys</p> http://stackoverflow.com/questions/1749832/swi-prolog-conditional-statements 2 SWI-Prolog conditional statements rb58 2009-11-17T15:55:32Z 2009-11-17T20:35:38Z <p>I'm trying to write a function that will test to see if the word hello is contained in a list. If it is contained, i don't want it to say "true", i want it to say : "yes, the word hello is contained here", any ideas?</p> <p>Here's my code : </p> <pre><code>contains_hello([hello|_]). contains_hello([Head|Tail]):- Head \= hello, contains_hello(Tail). </code></pre> http://stackoverflow.com/questions/1744208/prolog-member-predicate-one-liner 3 Prolog - member predicate one-liner Claudiu 2009-11-16T19:11:14Z 2009-11-17T18:28:21Z <p>Interview question!</p> <p>This is how you normally define the <code>member</code> relation in Prolog:</p> <pre><code>member(X, [X|_]). % member(X, [Head|Tail]) is true if X = Head % that is, if X is the head of the list member(X, [_|Tail]) :- % or if X is a member of Tail, member(X, Tail). % ie. if member(X, Tail) is true. </code></pre> <p>Define it using only one rule.</p> http://stackoverflow.com/questions/1730253/prolog-cut-off-in-method 1 prolog cut off in method Tom 2009-11-13T16:17:57Z 2009-11-17T11:21:56Z <p>I have a question I would like to ask you something about a code snippet:</p> <pre><code>insert_pq(State, [], [State]) :- !. insert_pq(State, [H|Tail], [State, H|Tail]) :- precedes(State, H). insert_pq(State, [H|T], [H|Tnew]) :- insert_pq(State, T, Tnew). precedes(X, Y) :- X &lt; Y. % &lt; needs to be defined depending on problem </code></pre> <p>the function quite clearly adds an item to a priority queue. The problem I have is the cut off operator in the first line. Presumably whenever the call reaches this line of code this is the only possible solution to the query, and the function calls would simply unwind (or is it wind up?), there would be no need to back track and search for another solution to the query.</p> <p>So this cut off here is superfluous. Am I correct in my deduction?</p> http://stackoverflow.com/questions/1737756/pascals-triangle-in-prolog 1 Pascal's Triangle in Prolog jsrs 2009-11-15T15:04:14Z 2009-11-15T19:26:45Z <p>I have written a function for returning the next row in Pascal's Triangle given the current row:</p> <pre><code>pascal_next_row([X],[X]). pascal_next_row([H,H2|T],[A|B]):- pascal_next_row([H2|T],B), A is H + H2. </code></pre> <p>I want to be able to find the nth row in the triangle, e.g. <code>pascal(5,Row)</code>, <code>Row=[1,5,1,0,1,0,5,1]</code>. I have this:</p> <pre><code>pascal(N,Row):- pascalA(N,[1,0],Row). pascalA(N,R,_Row):- N &gt; 0, M is N-1, next_row([0|R],NR), pascalA(M,NR,NR). </code></pre> <p>Obviously <code>Row</code> should be the last one found before <code>n==0</code>. How can i return it? I tried using the <code>is</code> keyword, i.e. <code>Row is NR</code> but that isn't allowed, apparantly. Any help?</p> <p><hr></p> <p>Trying to use <code>is</code> on lists gets me:</p> <pre><code>! Domain error in argument 2 of is/2 ! expected expression, but found [1,4,6,4,1,0] ! goal: _23592586 is[1,4,6,4,1,0] </code></pre> http://stackoverflow.com/questions/1555043/tail-recursion-sum-power-gcd-in-prolog 0 tail recursion sum, power, gcd in prolog? FRANK 2009-10-12T14:53:25Z 2009-11-15T06:15:35Z <p>hi guys, how can I accomplish this:</p> <p>Give a tail-recursive definition for each of the following predicates. power(X,Y,Z): XY=Z. gcd(X,Y,Z): The greatest common divisor of X and Y is Z. sum(L,Sum): Sum is the sum of the elements in L. </p> <p>so far I have done this but not sure if that's correct</p> <p>power(_,0,1) :- !.<br /> power(X,Y,Z) :- Y1 is Y - 1,power(X,Y1,Z1),Z is X * Z1.</p> <p>sum(void,0). sum(t(V,L,R),S) :- sum(L,S1),sum(R,S2), S is V + S1 + S2.</p> <p>please help. my email is b4b123456@yahoo.com</p> http://stackoverflow.com/questions/1736589/prolog-question 1 Prolog Question unknown (google) 2009-11-15T04:48:04Z 2009-11-15T06:01:04Z <p>hill(+IntList) succeeds if IntList consists of monotonically increasing integers followed by monotonically decreasing integers. For example, [1,2,5,8,11,6,3,-1] is a hill, but [1,2,5,8,11,6,9,3,-1] and [1,2,3,4,5,6] are not hills. You may assume that IntList contains only integers.</p> <p>This is what i have done so far.</p> <pre><code>hill(List) :- increasing(List), decreasing(List). increasing([H|Tail]) :- sm(H,Tail), increasing(Tail). increasing([]). decreasing([H|Tail]) :- gr(H,Tail), decreasing(Tail). decreasing([]). hill([]). gr(X,[H|Tail]) :- X&gt;H. gr(X,[]). sm(X,[H|Tail]) :- X&lt;H. sm(X,[]). </code></pre> <p>But this doesnt work. The logic is : A list of numbers is hill IF it s increasing and then decreasing. How do i say that? This one does increasing and decreasing. which no list is both increasing and decreasing. </p> <p>Any ideas?</p> http://stackoverflow.com/questions/1668428/prolog-problem-with-combinding-predicates-that-work-on-their-own 1 Prolog Problem with combinding predicates that work on their own misterfixit 2009-11-03T16:22:49Z 2009-11-14T04:19:46Z <p>Here we go, bear with me. The over-all goal is to return the max alignment between two lists. If there are more than one alignment with the same length it can just return the first.</p> <p>With alignment I mean the elements two lists share, in correct order but not necessarily in order. 1,2,3 and 1,2,9,3; here 1,2,3 would be the longest alignment. Any who, know for the predicates that I already have defined. </p> <pre><code>align(Xs, Ys, [El | T]) :-append(_, [El | T1], Xs),append(_, [El | T2], Ys),align(T1, T2, T). align(_Xs, _Ys, []). </code></pre> <p>Then I use the built-in predicate findall to get a a list of all the alignments between these lists? In this case it puts the biggest alignment first, but I'm not sure why. </p> <pre><code>findall(X,align([1,2,3],[1,2,9,3],X),L). </code></pre> <p>That would return the following; </p> <pre><code>L = [[1, 2, 3], [1, 2], [1, 3], [1], [2, 3], [2], [3], []]. </code></pre> <p>That is correct, but now I need a predicate that combines these two and returns the biggest list in the list of lists. </p> http://stackoverflow.com/questions/1725444/uses-of-non-ground-facts-in-prolog 1 Uses of non-ground facts in Prolog? Juanjo Conti 2009-11-12T21:11:06Z 2009-11-12T23:08:34Z <p>In Prolog you can write a ground fact as:</p> <pre><code>lost(jen). </code></pre> <p>You can also write a non-ground fact as:</p> <pre><code>lost(X). </code></pre> <p>Does this makes any sense? Could you show me a practical/real example where non ground facts are used?</p> <p>Thanks,</p> http://stackoverflow.com/questions/1714532/prolog-parse-postfix-math-expressions 1 Prolog parse postfix math expressions misterfixit 2009-11-11T11:15:59Z 2009-11-12T15:32:31Z <p>I solved this my self. I'll post the solution when were past due date for my homework. </p> <p>Okay, I'm going to build a parser or an evaluator. The de facto standard when parsing with prefix notation is to just use a stack. Add to the stack if input is a number, if it is an operator you can pop twice apply operator and put the result back on the stack. </p> <p>The stack here would be a list, so I need to know how I can apply the operators. The input would be a string. "(11+2*)" This would 1+1=2*2=4. First it would read 1, and 1 to the stack. Read another 1 and add it to the stack. Now it reads "+", so it removes(pop) twice from the stack and apply + and puts the result back. Read 2, put 2 on the stack. Read *, pop twice and apply *. </p> <p>Hope this makes sense. How would the predicate look like? I need one variable for the input string, one to maintain the stack, and one for the result? Three? </p> <p>I'm especially wondering about push and pop on the stack as well as removing as I go from the input string. </p> http://stackoverflow.com/questions/1720895/prolog-mysteryc-a-b-c-d-z 1 Prolog mystery(c,[a,b,c,d],Z). jblade 2009-11-12T09:07:16Z 2009-11-12T09:40:43Z <p>I think the answer is 3 but I am not sure, can anyone provide some help?</p> <p>Suppose the following two statements are entered into Prolog:</p> <pre><code>mystery(X,[X|L],L). mystery(X,[Y|L],[Y|M]) :- mystery(X,L,M). </code></pre> <p>What would Prolog return if one then gives it the following goal? </p> <pre><code>?- mystery(c,[a,b,c,d],Z). </code></pre> http://stackoverflow.com/questions/1712034/what-does-means-in-prolog 1 What does \+ means in Prolog? Juanjo Conti 2009-11-10T23:38:45Z 2009-11-10T23:45:57Z <p>I've seen some answers here that use it and I don't know what it means or how to use it. I's also hard to look for it via a search engine :)</p> http://stackoverflow.com/questions/1701693/max-out-of-values-defined-by-prolog-clauses 0 Max out of values defined by prolog clauses Bemmu 2009-11-09T15:20:14Z 2009-11-10T09:30:55Z <p>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?</p> <pre><code>cat(sassy, 5). cat(misty, 3). cat(princess, 2). </code></pre> <p>My first thought was "hmm, the oldest cat is the one for which no older exists". But I couldn't really translate that well to prolog.</p> <pre><code>oldest(X) :- cat(X, AgeX), cat(Y, AgeY), X \= Y, \+ AgeX &lt; AgeY, print(Y). </code></pre> <p>This still errorenously matches "misty". What's the proper way to do this? Is there some way to more directly just iterate over the ages to choose max?</p> http://stackoverflow.com/questions/401635/good-beginners-material-on-prolog 8 Good beginners material on Prolog meelow 2008-12-30T21:54:48Z 2009-11-10T02:27:44Z <p>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.</p> http://stackoverflow.com/questions/1696778/prolog-looping-though-variable-results 0 Prolog looping though variable results Kyle G 2009-11-08T14:56:30Z 2009-11-09T01:26:24Z <p>Hello,</p> <p>I have a small program wrote in prolog. At the moment I can print the first result with</p> <p>test(X, 1, 4, 5).</p> <p>write(X).</p> <p>But if there is more than one result for X, How do I print the next ones?</p> <p>Thanks</p> <p>~ KyleG</p> http://stackoverflow.com/questions/1660152/prolog-find-the-longest-list-in-a-list-of-lists 0 Prolog Find the longest list in a list of lists misterfixit 2009-11-02T09:10:11Z 2009-11-07T06:38:55Z <p>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.</p>