Prolog is the most commonly used logic programming language. It supports non-deterministic programming through backtracking and pattern matching through unification.
0
votes
0answers
25 views
how do I interact with the inferior prolog process in emacs?
I've installed SWI-Prolog and emacs' prolog mode. I have a first_steps.pl file with prolog in it, and I do C-c C-b to consult the buffer. This opens a second buffer, prolog, whose mode is (Inferior ...
-1
votes
1answer
48 views
Using SWI-Prolog, syntax,singleton errors
I'm need to use SWI-prolog to solve a logic puzzle for homework, but I find the syntax and meaning very cumbersome even with my programming background. The problem I'm facing are error about singleton ...
3
votes
5answers
103 views
Recognize A^n B^n language in Prolog with no arithmetics
How to recognize A^n B^n language in Prolog without arithmetics and for any A, B where A != B?
With known A = a and B = b we could write
% For each 'a' save 'b' in a list, then check
% whether ...
-1
votes
2answers
43 views
Swi Prolog Relation
I am trying to write a relation split in Prolog that takes an integer N, a list L of integers, and other parameters, list L is flat. The relation split returns true if the list L can be divided into ...
1
vote
1answer
52 views
Logically Incorrect answer
I tested this code out. I solved it logically without the use of prolog and the answer was different. I cannot understand where the mistake is! These are my clues:
Mary Smith put all five wedding ...
0
votes
2answers
35 views
Prolog element is a list member check
I have a little rule in prolog that has to check if an element is a member of a list and write it's position in the list,but it only works if the elemebt i'm looking for is in the 1 place.Need help ...
0
votes
1answer
27 views
Logic Programming: Solve the term constraint f(X; Y; g(a)) = f(g(Y ); Z; X)
I was not able to attend my programming language class the other day due to my wonderful car crapping out on me. I am working on our homework assignment, I am doing pretty good till I got to this ...
2
votes
1answer
49 views
Prolog returning false for sudoku solver
:-use_module(library(clpfd)).
solve(X,Board):-
Board=X,
Board =
[A1,A2,A3,A4,A5,A6,A7,A8,A9,
B1,B2,B3,B4,B5,B6,B7,B8,B9,
C1,C2,C3,C4,C5,C6,C7,C8,C9,
...
1
vote
2answers
42 views
How to add domain variable to global_cardinality?
I'm trying to add a constraint global_cardinality to my program and in the manual of SICStus Prolog is written:
global_cardinality(+Xs,+Vals)
global_cardinality(+Xs,+Vals,+Options)
...
0
votes
1answer
33 views
Prolog sum of acalculation
I have some cartesian coordinates definition:
point(a, 5, 1).
point(b, 4, 2).
point(c, 3, 3).
point(d, 2, 4).
And a "route" definition:
route(path1, [a, c, b, d]).
Then I have a function to ...
1
vote
1answer
32 views
How to define a variable domain to be non-continuous range
I'm starting with SICStus Prolog and I would like to define a variable, say StartingTimes, to have a domain defined by list [1, 5, 10]
How can I do it in SICStus Prolog?
I would do something like:
...
0
votes
2answers
37 views
toplevel: Undefined procedure Prolog
sudoku(X,Board):-
Board=X,
Board =
[A1,A2,A3,A4,A5,A6,A7,A8,A9,
B1,B2,B3,B4,B5,B6,B7,B8,B9,
C1,C2,C3,C4,C5,C6,C7,C8,C9,
D1,D2,D3,D4,D5,D6,D7,D8,D9,
E1,E2,E3,E4,E5,E6,E7,E8,E9,
...
-1
votes
1answer
28 views
I want to use TuProlog in my Android Project
How I can make an Android Project using tuProlog like Api
I have benn trying it but I couldn't
I have this error:
Could not find class 'alice.tuprolog.Theory', referenced from method....
0
votes
2answers
33 views
Prolog write list in pairs
I have a list:
[a,b,c]
I want to print the list like this:
a -> b
b -> c
So far, I have this code:
print([]).
print([H|T]) :- write(H), write(' -> '), nl, print(T).
wich will ...
1
vote
2answers
20 views
Can I retrieve information from another file, using Prolog?
I'm trying to write a simple translation script, but the file's getting rather... long and confusing, mostly because I've stored all the translations at the end of the file. They're in the format ...
0
votes
1answer
26 views
Deleting a common number from an integer list in swi prolog
I use swi-prolog. How can you delete a common number from an integer list? for example, if the list is X=[11,12,13,14,15] and i need to delete 10 from it, so the list will become X=[1,2,3,4,5].
Help ...
2
votes
1answer
39 views
Recursive similarity between trees according to the number of common subtrees in Prolog
I am stufying Prolog using SWI Prolog and I am finding many difficult with this code snippet that found if 2 binary trees have N common subtree (having the same root):
/* BASE CASE: T1 and T2 are two ...
1
vote
3answers
92 views
Converting a string list to integer in swi prolog as shown
How to convert a string list to integers? Eg: if the list is ['i','am','fine'], the result should be [9,14,34] (i=9,am=1+13=14,fine=6+9+14+5=34)
How do I do this in swi prolog?
1
vote
1answer
34 views
keep getting the Singleton variable error
i am a beginner and use swi-Prolog. Can someone tell me why this piece of code doesn't work?
inp:- write('Enter the string'),nl,read(X),write(X).
abc:- subtract(X,['at','in','to','of'],L),write(L).
...
1
vote
1answer
44 views
Using subtract predicate in swi prolog
I need to subtract certain numbers from the given list. I use SWI prolog. This was what I did.
subtract([1,4],[1,2,3,4,5],'L')
But it doesnt seem to working in SWI prolog..pls help me....
1
vote
1answer
33 views
Similarity between trees according to the number of common subtrees in Prolog
I am studying Prolog for an universitary exame using SWI Prolog and I have some problems to understand what my teacher do in this example (it seems to me that is is incomplete) that implement the ...
1
vote
1answer
42 views
Prolog: Clauses are not together in source-file
I have this piece of code:
% Family tree
female(pen).
male(tom).
male(bob).
female(liz).
female(pat).
female(ann).
male(jim).
parent(pam, bob).
parent(tom, bob).
parent(tom, liz).
parent(bob, ann).
...
1
vote
1answer
99 views
Prolog avoid generating same lists twice
I have following code:
internal_generator(List):-
select(foo, List, MList),
select(bar, MList, M2List),
select(baz, M2List, _).
internal_generator2(List):-
select(sth1, List, MList),
...
1
vote
1answer
77 views
Prolog - neighbours in matrix
I need a query, which help me resolve following problem:
I have list of coordinates
[(1,1),(1,2),(1,3),(2,1),(2,2),(2,3)]
(1,1) (1,2) (1,3) (3,1) (3,2) (3,3)
I want get all possibilities of ...
2
votes
1answer
45 views
Prolog output: list element, not position
This is prolog output what I am trying to get:
?-mill(try(a,b,c,d,e),R).
R = (e:-c) ;
With code below I get numeric output. How can I get (e:-c) output, not their list position numbers?
...
0
votes
3answers
71 views
Can anyone point me in the direction of some 'wumpus world' type tutorials? [closed]
Hello stackoverflow users.
I have done some basic learning in Prolog with their user guide and followed the official LPA Flex tutorial booklet for Flex.
I am looking to write some form of my own ...
0
votes
4answers
78 views
Why this dynamic version of Fibonacci program is incredibly faster then this other? Prolog solutions
I am learning Prolog using SWI Prolog and I have a doubt about the followings two solutions of the Fibonacci number calculation program:
The first one is this:
fib(1,1).
fib(2,1).
fib(N,F) ...
-1
votes
0answers
43 views
Write a program that prints sum, product,subtract,division of two input integers in prolog [closed]
*question:*Write a Prolog program that will take two integers and the operation (sum, subtract, multiplication, division) as input and return the operation’s result of that integers as output.
...
2
votes
2answers
74 views
Reading a user-input string in prolog
I am beginner in Prolog. I am using swi prolog(just started using it) and I need to split a user input string into a list. I tried the following code, but I get an error stating that 'Full stop in ...
0
votes
2answers
66 views
prolog find minimum value query
If I have the facts in following format:
person(name,age).
How can I write a query to find the youngest person?
I have tried using recursion but I kept getting stuck in infinite loops. So far from ...
0
votes
2answers
35 views
SWI-Prolog file executing throug Java
I want to run SWI-Prolog from Java file. I want to read text.pl file and write the output in output.txt file. How can I do that?
I'm not pretty sure of what I did here if it is correct or not. I'm ...
1
vote
1answer
32 views
Getting SWI-Prolog to convert Literal to number
It will be quite a miracle if someone could help with the following...
I'm using SWI-Prolog to perform queries in a triples RDF file. The values can be queried, but instead of just a number, the word ...
0
votes
0answers
23 views
How to run Prolog from command prompt, and get input from file and send output to a file
I want to run SICStus Prolog from Command Prompt. I want to read input.txt as a query file and want to output result to output.txt
How can I do that?
1
vote
2answers
49 views
Prolog removing all variables and duplicates
I need a query, which will remove me all variables and duplicates from list.
Example:
?- L = [1,2,3,X,Y,3,2], my_awesome_predicate(L, Res).
Then, Res should be: [1,2,3].
I don't care about order ...
-2
votes
0answers
25 views
Some doubts about a program that found limited path from 2 nodes in a graph using Prolog
I am studying Prolog and I am finding some difficulties to understand this program that find a path between two nodes in a graph if this path is <= MaxLenght
This is the code:
edge(a,b).
...
1
vote
1answer
37 views
Telephone Conversation Logic Puzzle {Prolog}
year('1928').
year('1929').
year('1932').
year('1935').
person(gertie).
person(herbert).
person(miriam).
person(wallace).
exchange(al).
exchange(be).
exchange(pe).
exchange(sl).
solve:- year(Y1), ...
0
votes
1answer
27 views
preventing infinite loops prolog
I got the following promblem:
the following facts and predicates are defined:
father(avr, yit).
male(avr).
married(avr, sara).
father(yit, yaak).
married(rivka, yit).
father(yaak, yosef).
...
0
votes
1answer
23 views
SICStus Prolog making product/3 rule from sum/3
First of all, this is a homework question, so please just give me a hint!
%Here is a rule that defines sum/3 that returns yes if Z is sum of X and Y
sum(X,Y,Z) :-
Z is X + Y.
%How can I make ...
0
votes
3answers
38 views
Accumulating atoms into a list without recursion Prolog
I'm trying to write a Prolog program that takes user input and makes decisions based on the semantics of the input (basically a chatbot).
I had originally thought (being not a logic programmer) that ...
-1
votes
1answer
35 views
Explicitly failing a context free grammar sentence parse
I have a context free grammar sentence parser which functions correctly except for the fact that when you either type in something that doesn't exist in its knowledge base or doesn't conform to the ...
0
votes
1answer
39 views
left_of exercise from The Art Of Prolog
In the book we are asked to define the predicates left_of, right_of, above, and below using the following layout.
% bike camera
% pencil hourglass butterfly fish
left_of(pencil, ...
0
votes
1answer
47 views
What does this line of code do exactly? (Prolog)
My lecturer gave us this sample program to look at the code, while I understood the recursive function on a whole the was this one line I couldn't quite grasp the meaning of
all_different([H | T]) :- ...
0
votes
2answers
39 views
Read file and build facts on swi-prolog
I need to read from a file where there are descriptions of facts, for example:
id: GO:0000008
name: thioredoxin
and I need build a fact whith it, like as :"gene(0000008,thioredoxin)."
How I can do ...
0
votes
2answers
36 views
How to store the list of visited node in a path on a graph in Prolog
I am studying Prolog and I am finding some difficulty interpreting the slide proposed by my professor.
Starting from the classic program that say if exist a path between two node of a graph, this ...
0
votes
2answers
26 views
Prolog - writing a rule for finding the top cell
I'm new to Prolog and I wanted to write a program that can do some computations on a cellular space.
First of all, I've defined the cellular space by some facts:
board_size(3).
cell(0,0,0).
...
0
votes
1answer
15 views
Prolog fetch element in a sublist
If we have a list with sblist, how do we get a specific element in that sublist ?
Example: [[a,b,c],[d,e,f],[g,h,i],[j,k,l]].
If we want to fetch "i".
How do i make a query to prolog for this. Please ...
-2
votes
1answer
21 views
Prolog specific element of searched sublist
Ok, i have a list of the form :
myprg(X).
X = [[a,b,c],[d,e,f],[g,h,i],[j,k,l]].
that is sublists within a list.
I want to display LAST element in the sublist that has "g" as the first element.
...
1
vote
2answers
30 views
Change comparator in prolog rbtree
I am using the swi-prolog rb_trees. The standard implementation uses "==" to compare values, I need to use "=@=", is there some way to do it?
If it is not possible I guess I would need to find some ...
0
votes
1answer
46 views
How does maplist work in a program that inserts elements into an AVL Tree
I am studying Prolog and I could not follow the lessons so I have some doubts relating to a particular use of the maplist built in SWI Prolog predicate.
So let me explain my situation:
I have a ...
2
votes
1answer
38 views
Prolog: Downcase all atoms in a list
I'm trying to write a Prolog program that needs to take a user's natural language input and match it against a set of atoms. I'm using SWI Prolog's readln/1 to get input and put it in a list of ...

