Prolog is the most commonly used logic programming language. It supports non-deterministic programming through backtracking and pattern matching through unification.
0
votes
0answers
21 views
Prolog exercise
I would like to implement the following problem in Prolog: I have a box with a capacity of 10kg, I have a number of items with their weight:
shoes, 2kg.
sweater, 1kg.
wallet, 4kg.
cell, 7kg.
pc, ...
0
votes
1answer
30 views
Increase stack size in ECLiPSe/prolog/fd
We have to solve the liars problem in prolog, in several environments with constraints (ECLiPSe ic, ECLiPSe fd, SWI-prolog, GNU-prolog, NaxosSolver, etc.). I have used tail recursion (I think) and as ...
1
vote
3answers
29 views
Logical equivalence in Prolog
I got two expressions to list all lists of bits using Prolog:
bit(0).
bit(1).
bitlist1([]).
bitlist1([B|Bs]) :-
bit(B),
bitlist1(Bs).
bitlist2([]).
bitlist2([B|Bs]) :-
bitlist2(Bs),
...
1
vote
2answers
36 views
Problems with DCG (Prolog)
I am trying to work out this simple DCG assignment (Prolog) for my course. The prblem is about creating a DCG. I have already defined a Universe of Discourse in my code. But this question is a bit ...
-1
votes
1answer
26 views
Write a Prolog DCG grammar that handle the mean of a sentence and also build its parse tree
I have this DCG grammar that understand and agree phrases like: [john, paints] and [john, likes, mary] managing the semantic meaning directly into the DCG grammar by the use of parameters
...
-2
votes
2answers
36 views
How to search for words starting with given lettter in prolog
I am a beginner for prolog and I am trying to use it for my University project.
I want to implement a search function in prolog where when I type a letter it shows suggested words, starting from that ...
-1
votes
1answer
40 views
Solve “Out of local stack” in this specific constraint programming in prolog
I'm currently trying to create schedules for bus drivers in prolog. I wish to find a limited number of solutions. But I get the "Out of local stack" error, and I suppose it is because I'm getting too ...
-1
votes
2answers
31 views
Explain how prolog handles this query?
my_append([], L, L).
my_append([H|T], L, [H|NewTail]):-
my_append(T, L, NewTail).
Here is a program that can appear in my exam. The output is here:
?- my_append([1,2,5], [3,4], L).
L = [1, 2, 5, ...
3
votes
10answers
9k views
Prolog, find minimum in a list
in short: How to find min value in a list? (thanks for the advise kaarel)
long story:
I have created a weighted graph in amzi prolog and given 2 nodes, I am able to retrieve a list of paths. ...
1
vote
1answer
18 views
Prolog - deconstructing goals into individual facts and arithmetic
I'm attempting to write a small program that breaks up a given goal into all its smallest parts and eventually evaluates them. So far I have:
alien(X) :- fromMars(X), fromSaturn(X); fromJupiter(X), X ...
0
votes
1answer
14 views
Finding values without creating new unifications
I have a set of definitions of the form pair/2 and a predicate propagate/3:
pair(1, 2).
pair(2, 3).
pair(3, 4).
pair(4, 5).
propagate([], _, []) :- !.
propagate([pair(N, Num)|Tail], Num, ...
0
votes
2answers
54 views
tuprolog and Definite Clause Grammars
I'm using tuProlog (http://tuprolog.alice.unibo.it/) to run some prolog clauses from inside java. I'm having some problems with Definite Clause Grammars, and I think Stackoverflow might be the right ...
0
votes
1answer
24 views
How to assign value to a variable in CLPFD?
There is the predicate indomain/1 in manual that assigns values to a variable (let's call it X) in increasing order via backtracking.
I would like to change the order of values that are assigned to ...
0
votes
1answer
27 views
Prolog zodiacal and leap year
i'm trying to do something that tell me the zodiacal sign and if the year is leap year all of this in Prolog
and everything looks great but it's shows me an error when I try to do the cosnult
here ...
2
votes
2answers
24 views
Binding symbols and querying symbol values in Prolog
I have some difficulty doing some very basic things in SWI Prolog. For starters, how to I have a function that binds a symbol to a value? Here's what I tried, I don't know if it's correct:
bind(Name) ...
0
votes
1answer
34 views
Prolog displaying a path
if i have a simple graph as follows,
x <---> y <---> z
% get a path from start to end
path(Start, End, Path) :-
path(Start, End, [Start], Path).
path(End, End, RPath, Path) :-
...
0
votes
1answer
27 views
Some doubts about how work this DCG grammar for subset of natural language in Prolog
I am studying DCG grammar for natural language processing using Prolog and I have some doubts about if I have understand it correctly or if I am missing something.
This is my DCG grammar:
...
1
vote
3answers
304 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 ...
0
votes
1answer
12 views
How to sort by key AND value in SICStus Prolog?
I have a list like
L = [0-4, 0-3, 3-5, 1-2]
and I would like to sort the list by key and value so the result would be
L = [0-3, 0-4, 1-2, 3-5]
I found keysort but it sorts only by key. I can ...
0
votes
1answer
25 views
Prolog List instantiation
i want to create a predifined list. But i am doing something wrong because when i pass it as an argument it doesnt work.
Here is the code i have:
list([5, 1, 2, 8, 10, 4, 3, 6, 9, 7]).
print( [ ] ).
...
0
votes
1answer
39 views
Some doubts related about how work a meaning predicate that interprets the parse tree of a DCG grammar in Prolog
I am studying Prolog DCG grammar* and **parse tree on the Ivan Bratko book: "Programming for Artificial Intelligence"
I am finding some difficulties with the following example that provide a DCC ...
0
votes
1answer
27 views
Prolog-cut & fail
I have this function comb(2,[1,2,3],A) witch finds the combinations with the elements of a list. now i want to make a function witch puts me all these combinations in a list without sending ; in ...
0
votes
1answer
48 views
List combination start
I copied this code from this page:
% combination(K,L,C) :- C is a list of K distinct elements
% chosen from the list L
combination(0,_,[]).
combination(K,L,[X|Xs]) :- K > 0,
el(X,L,R), K1 ...
-6
votes
0answers
31 views
Could anyone please convert the following Turbo PROLG program to SWI-PROLOG? [closed]
/* Title :- Expert System for Computer Maintenance */
/*
Problem Considered
1. Floppy Disk
2. Hard Disk
3. POST
4. Printer
5. Motherboard
6. Power Supply
*/
domains
Problem=string
...
2
votes
1answer
78 views
Prolog notBetween function
I need some help here with Prolog.
So I have this function between that evaluates if an element is between other two.
What I need now is a function that evaluates if a member is not between other two, ...
0
votes
1answer
44 views
Stack overflow: infinite recursion X\==Y?
This is my program:
depends(apple, tree).
depends(cider, apple).
depends(X,Y) :- X\==Y, depends(Z,Y),depends(X,Y).
If I ask the following question:
depends(cider, tree).
I get:
GNU Prolog ...
0
votes
0answers
31 views
Analysis of an external file in Prolog
I should implement in Prolog a program that, given as input the name of a file (which is assumed to contain the Prolog code), extract and store the modules or libraries that it has imported and the ...
0
votes
2answers
34 views
Doubts about simple semantic knowledge rappresentation predicate in Prolog
I am studying DCG grammar and parse tree in Prolog on Ivan Bratko book "Programming for Artificial Intelligence"
In a program that use DCG grammar to extrapolate the meaning of a sentence I find ...
0
votes
3answers
55 views
Unification(?) in Prolog
I have a school project where I have to work with Prolog. This is all new to me, so I'm having some problems.
I have a list like this:
List = [(_,_,_),(_,_,_),(_,_,_)]
I'm supposed to receive ...
0
votes
1answer
47 views
how to check if B isn't betwenn A and B
i have a question, how can i make a program that says that given a list, B is not in the middle of A and C? i can suppose that betwwen A and C is only one position..
so:
...
3
votes
2answers
2k views
Prolog “or” operator, query
I'm working on some prolog that I'm new to.
I'm looking for an "or" operator
registered(X, Y), Y=ct101, Y=ct102, Y=ct103.
Here's my query. What I want to write is code that will:
"return X, given ...
2
votes
1answer
36 views
Prolog fd_domain is being undefined
OK, so I am trying to code this simple sudoku solver for a school project. I am using SWI - prolog, and I am using library clpfd.
The problem arises when I use domain/3 predicate. It is giving no ...
1
vote
1answer
57 views
How can I search a list with the underscore variable? (Prolog)
here's my problem I receive various lists with the underscore variable in them (for example: [ _, _, A, _, _] or [ _,A, B, _, _]), and I need to search those lists for the values that matter (in this ...
1
vote
1answer
27 views
prolog: Trying to model equation with 3 rules - how to get prolog to match the right one?
I'm trying to model a simple 3 variable equation (like Ohm's law) where RESULT=NUMERATOR/DENOMINATOR. (But actually in my case, I am using purely integers).
I have created three rules; which appear ...
0
votes
1answer
82 views
“Or” procedure in prolog
I'm doing a prolog program for college that is a bit like the cluedo game. I have six suspects with different traits:
suspect(Name, Age, Weapon, Shape, Object, Shoes)
The goal is to implement a ...
0
votes
1answer
30 views
Prolog query not returning the expected result
For university exam revision, I came across a past paper question with a Prolog database with the following structures:
% The structure of a media production team takes the form
% team(Producer, ...
0
votes
1answer
22 views
Program that “mean” a parse tree in Prolog, don't work
I am studying DCG grammar and parse tree using the Ivan Bratko book: Programming fro Artificial Intelligence.
On the book I found the following example that show a DCC grammar that also generate a ...
1
vote
2answers
30 views
Binding variables in Prolog
I am having the following issue in a Prolog program.
The mathematical formulation of the problem is as follows:
Let Entanglements = the set of structures of the form entanglement(Symbol, Index, PosX, ...
-1
votes
1answer
20 views
Some doubts related DCG grammar and parse tree relation in Prolog
I am studying DCG grammar and parse tree in Prolog using Ivan Bratko book: "Programming for Artificial Intelligence"
I have some doubt about my interpretation of this DCG grammar that generate a ...
0
votes
1answer
32 views
Some doubts about BNF grammars and Prolog's DCG grammars
I am studying grammars in Prolog and I have a litle doubt about convertions from the classic BNF grammars to the Prolog DCG grammars form.
For example I have the following BNF grammar:
<s> ::= ...
3
votes
2answers
47 views
Finding query for which a prolog program gives incorrect result
This Prolog program defines the third argument to be the maximum value of the first two numeric arguments:
max(X, Y, X) :- X >= Y, !.
max(X, Y, Y).
I think that this program works just fine. ...
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
1answer
31 views
Some doubts about how Prolog automatically convert DCG grammars int a set of rules
I am studying DCG grammar in Prolog using Ivan Bratko book: "Programming for Artificial Intelligence" and I am finding some problem to understand how Prolog automatically convert a DCG grammar into a ...
0
votes
1answer
34 views
Accessing SWI-Prolog libraries from Logtalk
I'm having a lot of fun using Logtalk, but ran into an issue using phrase_from_file. Specifically, my case looks something like this:
:- object(scan_parser).
:- public(scanlist//1).
...
0
votes
2answers
22 views
Prolog cut operator behaviour
I have these clauses:
a(1).
a(2).
b(a).
c(A,B,C) :- a(A),d(B,C).
c(A,B,C) :- b(A),d(B,C).
d(B,C) :- a(B),!,a(C).
d(B,_) :- b(B).
When I run the query c(X,Y,Z) the answers are:
X = 1, Y = 1, Z = 1 ...
0
votes
1answer
36 views
SWI-Prolog predicates are not called
I am trying to make a game similar to minesweeper and i am trying to count the number of bombs near a point on a map but it only enters in one countneighbour and it stops, how can I make it enter the ...
-3
votes
1answer
35 views
Creating Prolog Predicates
Prolog predicates - Built on this, question did not have enough clarity so I am posting the question in context.
Here is the question and I will post what I have done so far and what I am struggling ...
0
votes
1answer
16 views
Prolog for loop syntax error
I am trying to make a game similar to minesweeper and i need to check the neighbours of a square in the map but i get a syntax error at my for loop, I am using SWI-Prolog
checkneighbours(X,Y) :-
...
1
vote
1answer
29 views
Difference between X\=Y and dif(X,Y)
What is the difference between this:
X \= Y
and this piece of code:
dif(X, Y)
I thought that they should behave the same, but they do not. Here's the example:
n_puta(L, N, X) :- nputa(L, N, 0, ...
0
votes
1answer
42 views
Prolog: How to find a specific element in a list?
I have to implement this predicate:
predicate(+connections, +[index,position], -leftConnections);
The connections variable is a list which looks like this:
(conn(symbol1, element11, element21), ...

