An open source implementation of Prolog that runs on Unix, Windows and Mac.
-1
votes
0answers
33 views
Jar invalid ELF header?
I work with Open Suse 64 bits. I have a jar which was compiled on this machine with this OS, java is jdk1.7.0_21.
I want to use this jar with Netbeans.
If I try to load it jar with System.load() I get ...
2
votes
1answer
38 views
Problems with TXT file encoding in Prolog program on Linux system
I am working on an university Prolog that consist of a SWI Prolog text analyzer that very simplistically does the following things:
Read a .txt input file that contains some text and put this text ...
1
vote
1answer
22 views
How to use variables in Prolog query shell?
I know that I can use variables in Prolog shell (something like using '$' character, I think...but I don't remember...)
If I execute the following query it seems to work fine:
?- ...
0
votes
1answer
52 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).
...
1
vote
4answers
43 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),
...
-2
votes
2answers
39 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
30 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
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
28 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:
...
-6
votes
0answers
32 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
33 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
35 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
56 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
79 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
41 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
31 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
23 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
22 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 ...
2
votes
1answer
37 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 ...
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 ...
-1
votes
1answer
34 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
17 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
38 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
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> ::= ...
0
votes
1answer
38 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
45 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 ...
1
vote
1answer
20 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 ...
1
vote
2answers
40 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
27 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 ...
2
votes
2answers
102 views
SWI-Prolog Puzzle
This is the problem :
Victor has been murdered, and Arthur, Bertram, and Carleton are
suspects. Arthur says he did not do it. He says that Bertram was the
victim’s friend but that Carleton ...
2
votes
2answers
47 views
PROLOG List filter predicate not aswering true or false
I'm trying to make a predicate that takes two vectors/lists and uses the first one as a filter. For example:
?- L1=[0,3,0,5,0,0,0,0],L2=[1,2,3,4,5,6,7,8],filter(L1,L2,1).
L1 = [0, 3, 0, 5, 0, 0, ...
0
votes
1answer
24 views
Prolog “operator expected error” on predicate commands sequence
This very simple Prolog example from my study material is giving me an "Operator Expected" error:
greet(alice):-
write(‘How are you doin, pal?’).
greet(bob):-
write(‘Awfully nice to ...
1
vote
1answer
29 views
Is it correct this interpretation of DFS algorithm version that avoids loops in Prolog?
I am studying DFS algorithm the DFS algorithm version that avoids loops, this is the code
/* It is TRUE that Solution is the path from the start node Node to a goal state node
if it is TRUE the ...
0
votes
2answers
48 views
PROLOG: “Syntax error: Operator expected”
I cannot figure out what's the problem in this code. Please help me out. I get this error:
ERROR: c:/users/ahmed/downloads/test.pl:2:4: Syntax error: Operator expected
% ...
2
votes
1answer
39 views
How to implement a solve predicate for this “moving blocks” Prolog exercise?
I am studying Prolog using Ivan Bratko book: Programming for Artificial Intelligence and I am finding some difficulties to implement the final part of an exercise proposed
The exercise is a program ...
1
vote
1answer
29 views
Some doubts about how work this particular query of a delete from a list predicate
I have a doubt about how work this query for this del/3 predicate:
/* BASE CASE: If I delete X from List and X is the HEAD of List, NewList is
the Tail of List
*/
del(X, [X|Tail], ...
1
vote
1answer
26 views
PROLOG predicate answers true or false, but not the desired value
I am new to Prolog, and got stuck trying to make an auxiliar function that takes elements from a list, 2 at a time, and makes a vector.
For example:
L=[0,0,0,0,0,0,0,0], v_form([2,3,1,1],L).
L = ...
0
votes
1answer
20 views
Prolog: Move last element in list to front
Is there some built in predicate or easy way to move the last element in a list to the front? The only way I've come up with is a predicate that stores the last element, deletes it from the original ...
2
votes
2answers
39 views
some doubts about a Prolog program that use a moves graph to move blocks on 3 stack
I am studying Prolog using Ivan Bratko book: Programming for Artificial Intelligence and I am finding some problems trying to understand how work an exercise that use graphs to decide how to move ...
-3
votes
0answers
78 views
Coding A Sudoku Solver in Prolog [closed]
I am trying to code a sudoku solver in prolog; however it is returning false.
Here is the code I tried:
sudoku(Solution,Puzzle):-
PossibleNos = [1,2,3,4,5,6,7,8,9],
Solution = Puzzle,
Solution ...
0
votes
1answer
42 views
Why doesn't the following function work for recursive appending to a list in swi prolog?
I have a list L and I need to split each element into a separate list and again append them together. This is the code I made for the same.
split([],[]).
split([H|T],Ls):-split(T,Ls),splist(H,[]).
...
1
vote
1answer
54 views
8 queen solution that use a space state “graph” in Prolog don't work
I am studying Prolog on Ivan Bratko book: Programming for Artificial Intelligence and on the book I have found this version of 8 Queens problem that use a space state "graph" to solve the problem:
...
2
votes
2answers
68 views
Prolog - Extract a Sublist
sublist(L1,L2,I,J)
I have a list, L1 being passed in, along with 2 indices I and J, and I want L2 to be the inclusive sublist containing the elements between I and J.
If J is outside of the bounds, ...
0
votes
1answer
57 views
Prolog: fill list with n elements
Need to make a predicate, fill(L,X,N), where L is a list formed containing N elements X. If N <= 0 or N != length of L, L should be an empty list.
Here's what I've done, I've never been able to ...
1
vote
1answer
32 views
Prolog: unzip list of pairs
So, I have to create a predicate, unzip(L,R,P), where P is a list of pairs (Ex: P = [[1,2],[3,4]]. L has to be a new list that contains the first element from each pair, while R is a new list ...
1
vote
1answer
58 views
Prolog: Rotate list n times right
Working on a predicate, rotate(L,M,N), where L is a new list formed by rotating M N times right.
My approach was to just append the tail of M to its head N times.
rotate(L, M, N) :- (N > 0, ...
0
votes
1answer
37 views
Building a list of n length same value Prolog
I want to build/3 a list in Prolog of N elements, each element should be X.
?- build(30,3,L).
L = [30,30,30].
Spent a good few hours on it, keep ending up in either a infinite loop or the ...
2
votes
2answers
49 views
Prolog: Create sublist, given two indices
Basically, I need to create a predicate of the form sublist(S,M,N,L), where S is a new list formed from the elements of L between index M and index N, inclusive.
Here's where I've gotten:
...
0
votes
3answers
50 views
Prolog: Create list containing elements at even indices
Basically, I need to write a predicate, even_elts(L,M), such that L is a new list generated that contains only the even indexed elements from M (0th, 2nd, 4th, etc)
add_tail([X],[],X).
...
0
votes
0answers
24 views
Some doubts about Prolog implementation of 2-3 Dictionary
I am learning Prolog using SWI Prolog and I have some doubts about how work this implementation of the 2-3 dictionary in Prolog.
I know the theory of the 2-3 dictionary that are trees whose internal ...




