Prolog is the most commonly used logic programming language. It supports non-deterministic programming through backtracking and pattern matching through unification.
0
votes
1answer
61 views
How I can add all the data in a knowledge base in Prolog?
I need help with this exercise of prolog:
% items
items (cell).
items (labial).
items (control).
items (mirror).
% Weight of each item
weight (cell 2).
weight (labial, 3).
weight (control, 5).
...
2
votes
4answers
59 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),
...
0
votes
1answer
60 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
2answers
57 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
2answers
67 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
45 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
1answer
41 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
...
-1
votes
2answers
43 views
How does Prolog handle this query
Considering the following definition:
my_append([], L, L).
my_append([H|T], L, [H|NewTail]):-
my_append(T, L, NewTail).
And a possible usage, and its output:
?- my_append([1,2,5], [3,4], L).
L = ...
0
votes
1answer
18 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, ...
1
vote
1answer
19 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
35 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 ...
0
votes
1answer
35 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
32 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 ...
2
votes
2answers
34 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
29 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:
...
0
votes
1answer
20 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
28 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 ...
-6
votes
0answers
37 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
...
0
votes
0answers
35 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
1answer
49 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
2answers
39 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 ...
1
vote
1answer
64 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 ...
0
votes
3answers
61 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 ...
2
votes
1answer
80 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, ...
1
vote
1answer
30 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
45 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
33 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
83 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
28 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
votes
1answer
33 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 ...
1
vote
2answers
38 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, ...
2
votes
1answer
78 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 ...
3
votes
2answers
52 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. ...
0
votes
1answer
43 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 ...
0
votes
1answer
36 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).
...
-1
votes
1answer
41 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
49 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
1answer
38 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
30 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) :-
...
0
votes
2answers
25 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 ...
1
vote
1answer
32 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, ...
1
vote
1answer
18 views
confused about Prolog Response
Consider:
bar([], Ws, Ws).
bar([X|Xs], Ys, [X|Zs]) :- bar(Xs, Ys, Zs).
1) How does this have no Solutions
bar([1,2], [], [X,X]).
2) How does this have only One Solution when Z=5?
bar([5,Y], ...
0
votes
1answer
52 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), ...
0
votes
1answer
28 views
Swi prolog finding all the neighbours of a nod in a directed graph
I have a directed graph represented like this:
arc(1, 2).
arc(1, 4).
arc(1, 5).
arc(3, 2).
arc(3, 7).
arc(4, 3).
arc(5, 6).
arc(6, 8).
arc(7, 6).
arc(9, 8).
What I need is a predicate that will put ...
1
vote
1answer
31 views
Prolog “Syntax Error: Operator Expected” Error
I am editing the following game and have 2 errors left; both are at the bolded and italicized "!." (in this forum listed with *'s). This doesn't happen in all the other times they are used and I have ...
1
vote
1answer
49 views
Prolog, Definite Clause Grammar
Some code I wrote for a definite clause grammar
I followed the book "Learn Prolog Now" very closely
lex(the,det(single)).
lex(the,det(plural)).
lex(a,det(single)).
lex(some,det(plural)).
...
0
votes
1answer
18 views
prolog delete head from a clause
I am using yap.
Suppose I have this scenario:
p(x,y) :- q(x), f(x,y), g(x).
I need to put the body of the predicate in a list using the command listing(p).
Expected output should be:
[q,f,g].
How ...
1
vote
1answer
29 views
prolog: rule to check pythagorean triplet?
Prolog Keeps saying 'no' to me.... :(
I am very new to prolog, I have a basic question:
So I'm trying to produce a simple rule that checks if three numbers constitute the length of the sides of a ...
0
votes
0answers
31 views
Graph Prolog Circular Path
I need to program a predicate, named region(graph,list) in which graph is declared as:
[vertex(a,[b,c]), vertex(b,[a,c,d]), vertex(c,[b,a]),vertex(d,[b,c])].
List is a circular path of the vertices ...




