Prolog is the most commonly used logic programming language. It supports non-deterministic programming through backtracking and pattern matching through unification.

learn more… | top users | synonyms

0
votes
1answer
23 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
0answers
9 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 ...
1
vote
2answers
16 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
20 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
10 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
22 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
23 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
27 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
28 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
43 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
30 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
2answers
55 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
51 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
75 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
23 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
38 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
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
78 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
20 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
18 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
28 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
29 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
46 views

Finding query for which a prolog program gives incorrect result

This Prolog program de fines the third argument to be the maximum value of the fi rst two numeric arguments: max(X, Y, X) :- X >= Y, !. max(X, Y, Y). I think that this program works just fine. ...
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 ...
0
votes
1answer
31 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
28 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
46 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
34 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
15 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
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 ...
1
vote
1answer
26 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
17 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
35 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
23 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
29 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
29 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
17 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
24 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
21 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 ...
0
votes
1answer
30 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> ::= ...
0
votes
0answers
32 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
32 views

How can extract the module's name in a file?

How can extract the module's name and the optional predicates present in a file? If I have a file.pl containing the call to one or more modules, how can I extract the name of these modules and the ...
-1
votes
0answers
41 views

How can I speed up my prolog program

I am using swi jpl a prolog/java interface and recently I am running into performance issues, the knowledge base contains around 3K predicates and 200 rules, sometimes a single query could return ...
0
votes
0answers
42 views

prolog predicate dependency tree

Let's say I have this scenario: ascendent(X,Y) :- parent(X,Y). ascendent(X,Y) :- parent(X,Z), ascendent(Z,Y). brother(X,Y):-parent(Z,X),parent(Z,Y), X \= Y . uncle(X,Y):-brother(X,Z),parent(Z,Y),X ...
1
vote
1answer
16 views

BFS visit in Prolog, why this program don't work?

I have take this program that impement BFS visit algorithm from Ivan Bratko book: "Programming for Artificial Intelligence". It's logic is pretty clear form me (I have commented the lines of code ...
0
votes
2answers
32 views

How to print square of n*n given characters in prolog?

Write a Prolog program to print out a square of n*n given characters on the screen. Call your predicate square/2. The first argument should be a (positive) integer. the second argument the character ...
1
vote
2answers
36 views

Iterative deepening with Max depth constraint in Prolog

I have to modify the following Prolog program that implements the iterative deepening dfs search on a graph: s(a, b). s(b, c). s(c, d). s(a, d). goal(d). /* Solution is the inverse list of the ...
1
vote
1answer
26 views

Getting all nodes that have atleast 2 nodes connected to them

Having some issues with a prolog question: The following clauses represent a directed graph, where nodes are atoms, and edges are denoted by the connected predicate. Given that the following ...
1
vote
2answers
44 views

How to shorten following program?

I would like to shorten the following program. Just imaging there are tens of variables instead of just X and Y. The problem is that I need to define domain for each variable separately. I don't like ...
0
votes
1answer
36 views

Prolog falling into infinite loop

I'm trying to define the rule of "My friend's friend is my friend" in prolog, and I have the following code: friends(john,jake). friends(mike,hans). friends(hans,robert). friends(robert,angela). ...

1 2 3 4 5 57