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 “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 ...
0
votes
1answer
42 views

Converting propositional logic argument to Prolog

How do I translate the following argument into Prolog? It seems like it doesn't need predicates. (Note: I use & for a conjunction and | for a disjunction.) G -> (H & J) (H | J) -> S ...
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
45 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
44 views

Is it possible to set variable's domain as an enumeration of names in clpfd?

I can specify variable's domain in this way: MyVar in 1..10 or MyVar in {1,10,15} but I have a variable which I would like to specify like this: Activity_1__room in {room_1, room_2} % i.e. as ...
1
vote
1answer
30 views

How to debug clpfd programs?

I have a program in SICStus Prolog (clpfd) and I would like to see what is going on during labeling. I tried trace but it is too verbose which makes it hard to understand what is really going on (what ...
2
votes
1answer
34 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
27 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
14 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 ...
0
votes
1answer
32 views

Define a dcg for palindromes over the alphabet {a,b} of 2 symbols a and b such that the number of a's is one less than the number of b's

I am trying to define a palindrome where the number of a's is one less than the number of b's. I cant seem to figure out how to write it properly please-->palindromes. palindromes-->[]. ...
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 ...
0
votes
2answers
136 views

Find all possible paths w/o loops in Graph in Prolog

I got an homework assignment for my logic course, but more or less don't have any clue how to solve it... With a query like ?- find(a,[r(a,[b,d]),r(b,[a,c,e]),r(c,[b]),r(d,[a,e]), ...
-3
votes
0answers
61 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
41 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
38 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: ...
-1
votes
1answer
27 views

Prolog program to recognize context free grammar a^n b^n

Using Prolog I'm trying to write a predicate that recognizes context free grammar and returns true if the input list matches the CFG. The alphabet of the input consists only of a,b. The CFG i'm trying ...
2
votes
2answers
64 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
52 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
56 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
48 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
18 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
22 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 ...
3
votes
5answers
92 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
2answers
39 views

Swi Prolog Relation

I am trying to write a relation split in Prolog that takes an integer N, a list L of integers, and other parameters, list L is flat. The relation split returns true if the list L can be divided into ...
1
vote
1answer
48 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
2answers
33 views

Prolog element is a list member check

I have a little rule in prolog that has to check if an element is a member of a list and write it's position in the list,but it only works if the elemebt i'm looking for is in the 1 place.Need help ...
0
votes
1answer
26 views

Logic Programming: Solve the term constraint f(X; Y; g(a)) = f(g(Y ); Z; X)

I was not able to attend my programming language class the other day due to my wonderful car crapping out on me. I am working on our homework assignment, I am doing pretty good till I got to this ...
2
votes
1answer
32 views

Prolog returning false for sudoku solver

:-use_module(library(clpfd)). solve(X,Board):- Board=X, Board = [A1,A2,A3,A4,A5,A6,A7,A8,A9, B1,B2,B3,B4,B5,B6,B7,B8,B9, C1,C2,C3,C4,C5,C6,C7,C8,C9, ...
1
vote
2answers
40 views

How to add domain variable to global_cardinality?

I'm trying to add a constraint global_cardinality to my program and in the manual of SICStus Prolog is written: global_cardinality(+Xs,+Vals) global_cardinality(+Xs,+Vals,+Options) ...
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 ...
1
vote
1answer
28 views

How to define a variable domain to be non-continuous range

I'm starting with SICStus Prolog and I would like to define a variable, say StartingTimes, to have a domain defined by list [1, 5, 10] How can I do it in SICStus Prolog? I would do something like: ...
0
votes
2answers
30 views

toplevel: Undefined procedure Prolog

sudoku(X,Board):- Board=X, Board = [A1,A2,A3,A4,A5,A6,A7,A8,A9, B1,B2,B3,B4,B5,B6,B7,B8,B9, C1,C2,C3,C4,C5,C6,C7,C8,C9, D1,D2,D3,D4,D5,D6,D7,D8,D9, E1,E2,E3,E4,E5,E6,E7,E8,E9, ...
-1
votes
1answer
26 views

I want to use TuProlog in my Android Project

How I can make an Android Project using tuProlog like Api I have benn trying it but I couldn't I have this error: Could not find class 'alice.tuprolog.Theory', referenced from method....
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
19 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 ...
2
votes
1answer
37 views

Recursive similarity between trees according to the number of common subtrees in Prolog

I am stufying Prolog using SWI Prolog and I am finding many difficult with this code snippet that found if 2 binary trees have N common subtree (having the same root): /* BASE CASE: T1 and T2 are two ...
1
vote
3answers
86 views

Converting a string list to integer in swi prolog as shown

How to convert a string list to integers? Eg: if the list is ['i','am','fine'], the result should be [9,14,34] (i=9,am=1+13=14,fine=6+9+14+5=34) How do I do this in swi prolog?
1
vote
1answer
32 views

keep getting the Singleton variable error

i am a beginner and use swi-Prolog. Can someone tell me why this piece of code doesn't work? inp:- write('Enter the string'),nl,read(X),write(X). abc:- subtract(X,['at','in','to','of'],L),write(L). ...
1
vote
1answer
37 views

Using subtract predicate in swi prolog

I need to subtract certain numbers from the given list. I use SWI prolog. This was what I did. subtract([1,4],[1,2,3,4,5],'L') But it doesnt seem to working in SWI prolog..pls help me....
1
vote
1answer
31 views

Similarity between trees according to the number of common subtrees in Prolog

I am studying Prolog for an universitary exame using SWI Prolog and I have some problems to understand what my teacher do in this example (it seems to me that is is incomplete) that implement the ...
1
vote
1answer
38 views

Prolog: Clauses are not together in source-file

I have this piece of code: % Family tree female(pen). male(tom). male(bob). female(liz). female(pat). female(ann). male(jim). parent(pam, bob). parent(tom, bob). parent(tom, liz). parent(bob, ann). ...
1
vote
1answer
96 views

Prolog avoid generating same lists twice

I have following code: internal_generator(List):- select(foo, List, MList), select(bar, MList, M2List), select(baz, M2List, _). internal_generator2(List):- select(sth1, List, MList), ...
1
vote
1answer
72 views

Prolog - neighbours in matrix

I need a query, which help me resolve following problem: I have list of coordinates [(1,1),(1,2),(1,3),(2,1),(2,2),(2,3)] (1,1) (1,2) (1,3) (3,1) (3,2) (3,3) I want get all possibilities of ...

1 2 3 4 5 57