Prolog is the most commonly used logic programming language. It supports non-deterministic programming through backtracking and pattern matching through unification.
1
vote
1answer
28 views
Calling predicate at the begining of the run
I need to check call a predicate automatically at the consult or start of pl.
Is there a such code to this?
0
votes
1answer
25 views
Function doesn't stop after first result - Prolog
I don't understand why the function doesn't stop after first result in this:
getNo(A, [[A,X]|_], X).
getNo(A, [_|Tail], X):-
getNo(A, Tail, X), !.
getNo(_,[],0).
And example inputs:
?- ...
0
votes
1answer
39 views
fibonacci implementation in prolog
I'm trying to make my own implementation of the fibonacci sequence. This is what I have:
fibo2(N, F) :-
fibo2(0, 1, 0, N, F).
fibo2(N-F, F, N-1, N, F).
fibo2(P, S, C, N, F) :-
C < N,
...
1
vote
3answers
53 views
Arithmetic on Two Lists Prolog
So I have a HW problem I've been working on for a couple days and I'm stuck on the last part. In Prolog, I'm supposed to write a function that takes in two lists
((x1, x2, …, xn), (y1, y2, …yn) )
and ...
0
votes
1answer
37 views
How to remove multiple consecutive white space in Prolog using only get0 predicate
I have a program that read a string from the input and removes the multiples blank spaces between words changing them into single withe space using both get0 and get predicate:
squeeze :- get0(C), ...
3
votes
2answers
41 views
Element handling issue in Prolog, but not in a regular list?
I'm trying to write an element handling function in Prolog. It's almost the same as the prolog predicate member/2 but it must do the job in a different way. For being specific; I must say the member/2 ...
-1
votes
1answer
30 views
Some doubts about declarative meaning of a program that prints a list of lists in Prolog
Write a rule that take a list whose elements are themselves lists and
print on each line the elements of internals list:
Example:
?- printList[[1,a],[2,b]]).
1 a
2 b
The ...
0
votes
2answers
33 views
Read list in prolog from file
I'dve text file with list description like this one:
[(3,3,0), (3,5,0), (4,4,1), (5,1,0), (6,6,3)].
Is there any built-in predicate in prolog that can load this straigth into list? Or am I forced ...
0
votes
1answer
36 views
Prolog Relational Tracking without Lists
I am trying to get a predicate to relate from 1 fact to another fact and to keep going until a specified stopping point.
For example,
let's say I am doing a logistics record where I want to know ...
1
vote
1answer
30 views
Infinite loop prolog
I am writing a function that returns distinct sublists of a size n.
When I run the following prolog code with a query gen_list_n(4,D,[1,2,3,4]) it runs into an infinite loop after returning the first ...
0
votes
5answers
50 views
Count only numbers in list of numbers and letters
I'm new to Prolog and I can't seem to get the answer to this on my own.
What I want is, that Prolog counts ever Number in a list, NOT every element. So for example:
getnumbers([1, 2, c, h, 4], X).
...
0
votes
1answer
46 views
Add fact to list if it's not already in
I need to construct a list based on facts I have. For example I have a course list like this :
attend(student1,c1).
attend(student1,c2).
attend(student2,c1).
attend(student2,c3).
...
0
votes
1answer
33 views
Why is this query succeeding and failing in prolog?
In my prolog program, it succeeds in finding who ruled when King Edward VIII was born, but for some reason also fails. Here is a small chunk of my code:
reigned('Queen Victoria', 1819, 1901).
...
-1
votes
0answers
29 views
Prolog - Concatenate everything inside a list
How would I do this in prolog?
[a,man,a,plan,a,canal,panama] => [amanaplanacanalpanama]
So everything in the list needs to be concatenated
1
vote
1answer
43 views
Basic Prolog - Arbitrary amount of atoms (new to Prolog)
palindrome_list_atomes(A,B):-
atom_concat(A,B,C),
atom_chars(C,X),
palindrome_list(X).
I want to make it so palindrome_list_atomes(A,B) will except any amount of Atoms (not just A and ...
1
vote
1answer
28 views
Prolog practice, need to figure out why Im getting errors
Hey I am studying for an exam and I cant figure out one of the practice questions. Can I get some help please.
This is the question: Define a predicate called power10 which takes two parameters. ...
0
votes
1answer
35 views
Check If Everything In Head Is Less Than Tail
Given a list containing sublists [[1].[2],[3]] how would I check to see if HEAD of the first sublist in the list is less than the rest of the HEADS of the other sublists?
0
votes
2answers
81 views
Performance optimizations of information retrieval in Prolog
I wanted to do some information retrieval tasks with Prolog. Currently I have a (large) set of distinct Prolog theories representing the dependencies in a sentence (incidentally, I store these Prolog ...
1
vote
1answer
53 views
How to read all the Prolog predicate in a .txt file using read predicate in Prolog?
I am learning Prolog using SWI Prolog. Consider the situation in which I have a file named myFile.txt that contains the following content:
line1.
line2.
line3.
Now I am trying to create a predicate ...
2
votes
2answers
123 views
PROLOG with lambda expressions
Is there any Java PROLOG implementation that supports lambda expressions? I know that there are Java implementations of other languages that support lambda expressions, such as LISP and Clojure, but I ...
1
vote
3answers
116 views
Prolog I/O reading file and extracting info to use
During my journey in Prolog, now I am stuck with i/o part. I was trying to read a file which is written in a specific format and create my facts with them and use these facts. But after reading ...
1
vote
2answers
50 views
How to read from file using see and putting the content into a list in Prolog?
I am studying Prolog using SWI Prolog and I am finding many difficulties about how to read textual data from a file and printing it on the screen using see built in predicate.
I have this program ...
1
vote
1answer
98 views
determine the old line of succession prolog
Given the british royal family,
Using only male(X),female(X) and parent(X,Y) where the parent of X is Y, how to create the line of succession(X,Y) where Y is the successor of X in prolog
I have ...
0
votes
4answers
58 views
Handling all possible results in prolog
I have a clause is_adjacent([X1,Y1], [X2,Y2]) which is true, when [X2,Y2] is a neighbor of [X1,Y1]. I get all possible results (four) if i ask is_adjacent([2,2], [X,Y]), in this case:
...
0
votes
1answer
23 views
Can't access to a file in Prolog, always read the end_of_file athom
I am studying Prolog using SWI Prolog and I am finding some difficulties related to the operation of reading and writing on a file.
I have this simple program that read something from the standar ...
3
votes
1answer
179 views
Prolog maze solving algorithm
I want to implement a maze solving algorithm in Prolog. Therefore i searched for some maze solving algorithms and found the following: http://www.cs.bu.edu/teaching/alg/maze/
FIND-PATH(x, y):
if ...
1
vote
1answer
36 views
Prolog, “or” operator for rule statments
I am new to prolog and want to make a rule statement for whether 2 people are cousins.
This is my current code, I added "or" to where I need the or operator:
cousins(E, F) :- siblings(A, C) or ...
0
votes
0answers
39 views
Infix expressions with user-defined operators in prolog for java
Context
I used gnu-prolog to create a program. For syntax purposes I defined an operator '::' ...
op(350,xfy,::)
... in order to make infix expressions such as
A=a::b::c
Now I want to ...
-2
votes
1answer
34 views
Determing The Lowest And Leftmost Coordinate
My goal is to implement the following, which I have already written in Java, in prolog:
public Point getP0(Vector<Point> set){
Point p0 = new Point();
for(int i = 0; i < ...
0
votes
2answers
20 views
How to unify numbers in prolog?
In prolog, if I type 1 is 1. in the terminal, I get true, but if I try 1 is X. I get
ERROR: is/2: Arguments are not sufficiently instantiated.
But I expect it to tell me all the numbers that are ...
1
vote
1answer
32 views
time exceeded exception in prolog, get last value before interupt
i have predicate that counts factorial for number N, but when time exceeded 1 sec, it is interupted:
factorial( 0, 1 ).
factorial( N, Value ) :-
N > 0,
Prev is N - 1,
factorial( Prev, ...
0
votes
2answers
42 views
Can't access a file in Prolog
I am studying Prolog using SWI-Prlog.
I am finding some problems with the following example that simply access to a file and write in it what the user put in the Prolog Shell.
processFile(File) :- ...
0
votes
1answer
51 views
Prolog - Creating a list by iterating facts
I am new in Prolog and wanted to learn it. I have been trying to create a list while iterating facts but list that was created one step back refreshing and lost the data. How can I keep the data and ...
-1
votes
1answer
34 views
Some doubts about the use of the cut in a program that read and format an input text in Prolog
I have some doubt related to the declarative interpretation of this simple Prolog example that read a sentence from the current input stream and output the same sentence reformatted so that multiple ...
0
votes
0answers
27 views
consulting file in swi prolog
I'm new to Prolog and I am having issues using the consult predicate. I have altered the folder in which my SWI Prolog starts in (similar to how I did with ML) and save my file in that folder. ...
0
votes
1answer
25 views
Prolog defining my own operator and arithmetic_function
I wanna declare an ! operator who will used to calculete facorial of an Integer.
I have this code in file.
:- arithmetic_function(!/1).
!(X,Y):-sil(X,1,Y).
sil(0,X,X):-!.
sil(N,A,X):-A1 is A*N,N1 ...
0
votes
4answers
105 views
Prolog converting integer to a list of digit
I want to write a predicate that an integer and a list of digits, and succeed if Digits contain the digits of the integer in the proper order, i.e:
?-digit_lists( Num, [1,2,3,4] ).
[Num == 1234].
...
0
votes
1answer
53 views
Prolog find minimum in list error
Im trying to make my code work, but somehow I got stuck on a problem, Im very newbie to prolog. This is my code.
dist(valmiera, riga, 107).
%dist(riga, valmiera, 107).
dist(cesis, riga, 70).
...
0
votes
1answer
39 views
Definition of Grandparent in Prolog, would any prolog programmers care to help clear this up?
Grandparent(X,Y):- Parent(X,Mother(Y)).
Normally grandparent would be defined as Parent(X,Z) , Parent(Z,Y)....but it looks more natural to me as the Parent of Parent Y of X, what I defined above ...
0
votes
1answer
59 views
Can I use setof predicate to build a list without duplicates starting from a list with duplicate?
I am learning Prolog for an universitary exame using SWI Prolog and I have the following exercise:
Write the duplicates predicate that starting from a ListWithDuplicates
list (a list that admit ...
1
vote
1answer
61 views
Implementing a simple clustering algorithm in Prolog
My goal is implementing a simple clustering algorithm in Prolog.
Assume you have a certain amount of locations. Each position has a certain ID and they look like 'position(X,Y,ID)'.
I had the ...
2
votes
1answer
102 views
Binary search tree: min element
I tried to search for this but without luck; please let me know if the question has been answered!
Assuming I have a binary tree with key-value pairs of the form:
t/0: the empty tree
t/4: a tree ...
0
votes
1answer
60 views
New to Prolog, Lists and Pairs
I'm new to Prolog and I'm having a bit of a hard time understanding how some of the mechanics actually works. Right now I'm trying to work on a particular problem.
I need to find all possible pairs ...
1
vote
1answer
43 views
What is the difference between is and =?
I have entered these statements into the prolog interpreter and am confused by the results. Shouldn't they return the same thing; true?
1 ?- 7 = 5 + 2.
false.
2 ?- 7 is 5 + 2.
true.
0
votes
1answer
15 views
Atan2 and Prolog
Why does atan2(1,3). yield false?
I expected it to return an angle in radians as stated here: http://www.swi-prolog.org/man/arith.html
0
votes
1answer
19 views
Adding two params of a predicate that aren't static
I'm trying to add two numbers together
add(num1, num2, output) :-
output is num1 + num2.
Let's say X is 1 and Y is 3, but they're not static, just variables.
add(X, Y, out).
I get a ...
0
votes
2answers
111 views
Length of path between 2 nodes in defined grid [Prolog]
edge(a, b).
edge(b, d).
edge(d, c).
edge(d, e).
edge(d, f).
edge(e, g).
edge(f, g).
edge(g, h).
(assuming every edge is the same length).
For example, to get the length of the path between a and d:
...
1
vote
2answers
103 views
Difference between the input/output parameters in prolog
Is there any difference between the input/output parameters in Prolog definitions? How does this this compare with other languages such as scheme and C ?
1
vote
1answer
60 views
Prolog search list
In the code below, I am trying to search through a list and print "match" if there's a match in the list and print "no match" if there's no match. My code prints "match" if there's a match but, ...
0
votes
1answer
54 views
SWI prolog: List Manipulation
For example there are two lists
List1 = [ [1,2,3,4], [2,4,5,4],[4,5,2,5],.....]
List2= [ [2,4,4,1], [5,6,1,2], [4,2,3,4],.....]
now i want to look the two list, and compare the third element of each ...



