0
votes
1answer
22 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
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
2answers
32 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
54 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, ...
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
21 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
19 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
30 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
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
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) :- ...
1
vote
1answer
30 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
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
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 ...
1
vote
1answer
17 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
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 ...
2
votes
2answers
87 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
45 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
23 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
46 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
37 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
28 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
24 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
18 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
38 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
63 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
43 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
65 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
53 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
57 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
48 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
49 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
20 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 ...
1
vote
1answer
66 views

Find a missing number in a list

Say I have a List [2,1,4,5], I would like to have a predicate that returns 3 as the missing element. missing([], []). missing([H|T], R) :- missing([H|T], H, R). missing([], _I, []). missing([H|T], I, ...
0
votes
0answers
24 views

how do I interact with the inferior prolog process in emacs?

I've installed SWI-Prolog and emacs' prolog mode. I have a first_steps.pl file with prolog in it, and I do C-c C-b to consult the buffer. This opens a second buffer, prolog, whose mode is (Inferior ...
-1
votes
1answer
44 views

Using SWI-Prolog, syntax,singleton errors

I'm need to use SWI-prolog to solve a logic puzzle for homework, but I find the syntax and meaning very cumbersome even with my programming background. The problem I'm facing are error about singleton ...
1
vote
1answer
49 views

Logically Incorrect answer

I tested this code out. I solved it logically without the use of prolog and the answer was different. I cannot understand where the mistake is! These are my clues: Mary Smith put all five wedding ...
0
votes
1answer
32 views

Prolog sum of acalculation

I have some cartesian coordinates definition: point(a, 5, 1). point(b, 4, 2). point(c, 3, 3). point(d, 2, 4). And a "route" definition: route(path1, [a, c, b, d]). Then I have a function to ...
0
votes
2answers
31 views

Prolog write list in pairs

I have a list: [a,b,c] I want to print the list like this: a -> b b -> c So far, I have this code: print([]). print([H|T]) :- write(H), write(' -> '), nl, print(T). wich will ...
1
vote
2answers
20 views

Can I retrieve information from another file, using Prolog?

I'm trying to write a simple translation script, but the file's getting rather... long and confusing, mostly because I've stored all the translations at the end of the file. They're in the format ...
0
votes
1answer
25 views

Deleting a common number from an integer list in swi prolog

I use swi-prolog. How can you delete a common number from an integer list? for example, if the list is X=[11,12,13,14,15] and i need to delete 10 from it, so the list will become X=[1,2,3,4,5]. Help ...

1 2 3 4 5 18