ISO/IEC has standardized Prolog. The standard is maintained by ISO/IEC JTC1/SC22/WG17.
3
votes
3answers
39 views
Making Prolog code that works in GNU and SWI
I realize there are going to be limits to this, but is there a reasonable way to put in conditional directives in Prolog code so that it an work reasonably in either GNU or SWI? I'm thinking at least ...
1
vote
1answer
40 views
Is it always necessary to use '.\n' when reading streams in Prolog?
I'm using pipes to communicate two Prolog processes and every time I reached a read/2 predicate to read a message from my pipe, the program blocked and remained like that. I couldn't understand why ...
1
vote
1answer
58 views
Prolog- Put the result of a query in a list
I have these facts
enroll(hazem,maths).
enroll(hazem,science). and so on
and I want to have
student(X,ListOfCourses). that returns the courses X is taking in a list.
1
vote
2answers
65 views
Atom escaping rules in Prolog
I need to export to a file a Prolog program expressed using an arbitrary term representation in Java. The idea is that a Prolog interpreter should be able to consult the generated file afterwards.
My ...
3
votes
1answer
76 views
Hilog terms in (XSB) Prolog
Are Hilog terms (i.e. compounds having as functors arbitrary terms) still regarded as a powerful feature in XSB Prolog (or any other Prolog) ?
Are there many XSB projects currently using this feature ...
3
votes
1answer
172 views
Prolog systems in Javascript [closed]
Javascript seems to become popular as an implementation language for other programming languages.
The article
Lightweight compilation of (C)LP to JavaScript. ICLP 2012
drew my attention on this.
...
0
votes
1answer
224 views
Decision tree evaluation using Prolog
To represent the function
f(x) =
if x < -2 then -1
else
if x > 2 then +1
else
0
The decision tree is represented as
[-1, [lt, -2], [1, [gt, 2], 0] ]
...
1
vote
1answer
166 views
Postfix to Prefix Conversion using Prolog
Can anyone help me to write a program using stack concept in PROLOG to convert an arithmetic expression from postfix(reverse polish notation) to prefix form. The arithmetic expression may contain the ...
1
vote
2answers
51 views
Prolog reassigning operators
I'm new to prolog and I'm trying to reassign operators in prolog by changing their precedence. I'm running into 4 errors for the following:
:-op(1000,yf,+). %unary plus%
:-op(1000,yf,-). %unary ...
2
votes
1answer
56 views
Finding all predicates with the same arity
Is it possible to pose a query such as
?- X(C).
that can return all the predicates that have arity 1? In general, is it possible to refer to a predicate name by using a variable?
0
votes
1answer
846 views
8-puzzle has a solution in prolog using manhattan distance
The 8-puzzle will be represented by a 3x3 list of lists positions where the empty box will be represented by the value 9, as shown below: [[9,1,3],[5,2,6],[4,7,8]]
Possibility Solution: Only half of ...
3
votes
2answers
87 views
What does a clause without a head mean in prolog?
In the beginning of a Prolog program I see:
:-dynamic(path/1).
It seems to be a clause that doesn't have a head. What does it mean?
2
votes
2answers
117 views
Standard way to see what phrase/3 translates?
I am trying to dig into the GNU Prolog behaviour of:
test(X,I,O) :- phrase(X,I,O).
?- test(("a",!,"b"),"ab","").
Is there a standard way to see to what phrase/3 translates?
According to the ISO ...
1
vote
1answer
570 views
Prolog operator priority
The user input is given in the format a:b>c>d>e... and so on. I would like to parse the input into :(a,>(b,>(c,>(d,e))) would that be possible and is there any suggestion to do that? I tested with ...
4
votes
1answer
68 views
How truncate file length in Prolog?
How do I truncate the file length in Prolog?
I only find a set_stream_position/2 predicate in the ISO
standard. But I don't find a set_stream_length/2 predicate
in the major Prolog systems.
...
3
votes
1answer
131 views
DCG for idiomatic phrase preference
I have a manually made DCG rule to select idiomatic phrases
over single words. The DCG rule reads as follows:
seq(cons(X,Y), I, O) :- noun(X, I, H), seq(Y, H, O), \+ noun(_, I, O).
seq(X) --> ...
1
vote
1answer
189 views
prolog program to check whether a given input is digit or uppercase or lowercase
I have used the following logic for above program but it gives error showing >=/2: Arithmetic: 'a/0' is not a function. What should i do to correct the program?
digit(X):- ...
3
votes
1answer
185 views
DCG Expansion: Is Steadfastness ignored?
Assume I have the following DCG rule:
factor(X) --> "(", expr(X), ")".
Normally this would be translated to:
factor(X, A, B) :-
[40|C] = A, expr(X, C, D), [41|B] = D.
Would a Prolog ...
6
votes
2answers
128 views
Legitimate uses of (\+)//1
In grammar rules (dcg), there are several predefined constructs: (',')//2 meaning concatenation, ('|')//2 meaning alternation etc. One construct which is supported by several but not all Prolog ...
5
votes
4answers
150 views
Does Prolog have a condition and restart system like Common Lisp?
Common Lisp allows exception handling through conditions and restarts. In rough terms, when a function throws an exception, the "catcher" can decide how/whether the "thrower" should proceed. Does ...
4
votes
2answers
206 views
Extension to CFG, what is it?
Consider the following extension to context-free grammars that permits rules to have in the left-hand side, one (or more) terminal on the right side of the non-terminal. That is, rules of the form:
A ...
2
votes
2answers
86 views
Generating a new atom based on existing atom within a list
I would like to know how to generate a new atom in a list based on existing atom in another list. Given list:
L=[a,b,c,d]
I would like to produce a new list, for example:
P=[a_,b_,c_,d_]
In ...
6
votes
2answers
148 views
A searchable Prolog language description online
Is there a description of Prolog language (syntax and semantics) available online?
There are a lot of tutorials. And there are reference manuals for implementations. But neither of those is a ...
0
votes
1answer
974 views
Find the shortest path between two nodes in a graph in Prolog
I want to find the shortest path between two nodes in prolog.
I figured how to find all the paths between two nodes, but unfortunately the following code falls into loops:
arc(a,b).
arc(b,a).
...
1
vote
3answers
867 views
How to find string length using prolog
I have got a method length(list,var) which gives me the length of a list but i want to find the length of a String, anyone with a solution ?
0
votes
5answers
633 views
Recursive Function with If-Else Statements in Prolog
I'm trying to write a recursive function in prolog that computes R = (2*X + Y)^N without using the exponent operator. I've written a recursive function with if-else statements and I get the error: ) ...
10
votes
3answers
2k views
Prolog - unusual cons syntax for lists
I have come across an unfamiliar bit of Prolog syntax in Lee Naish's paper Higher-order logic programming in Prolog. Here is the first code sample from the paper:
% insertion sort (simple version)
...
0
votes
1answer
164 views
Term order for complex Abstract Syntax Tree
I have a question about abstract syntax trees.
In particular I want to sort several trees with an particular
term order.
How can one define a term order for an AST with the following properties:
...
0
votes
1answer
213 views
Prolog: declaring an operator
I have defined ! (factorial) function and registered it as arithmetic function and an operator, so that I can execute: A is 6!.
Now I'd like to define !! (factorial of odd numbers), but the same way ...
2
votes
3answers
162 views
Sometimes I don't know what the “/” means in Prolog
I see slashes used like this in code:
solution([X/Y|Others]) :-
noattack(X/Y, Others).
But then sometimes I see "/1" "/2" etc. in Prolog.
What do these statements (characters) mean?
1
vote
1answer
108 views
appendAll - Append a list to all lists within a list
I'm trying to find a way to append a list to all lists within a list.
Something like:
appendAll([a,b],[[q,w],[z,x]],X).
X = [[a,b,q,w],[a,b,z,x]].
I'm still new to prolog and nested lists are ...
2
votes
1answer
91 views
error while compling the metaprogram in prolog
I am trying to implement a meta-program in ECLiPSe Prolog, and here's the code that i have written -
:- dynamic go/1.
sol(true):- !.
sol((A,B)):- !, sol(A), sol(B).
sol(A):- clause(A, Body), ...
2
votes
2answers
605 views
Prolog infix operator definition
I am recently learning about Prolog and I find the three types used for defining infix operators confusing.
What are the differences between xfx, xfy and yfx when specifying the type of an operator?
...
1
vote
2answers
236 views
What is the meaning of predicate “simple/1” in Prolog (SWI-Prolog)
I run into problem while reading a book.
I see a program use predicate "simple" ( I guess simple/1 ). I don't know what is the meaning of this predicate, I can't find it with ?-help(simple) in the ...
1
vote
2answers
96 views
Assigning a parameter to the greater of two numbers
I've written the following recursive function to assign a parameter to the greater of two numbers:
max(A,B,X) :-
A >= B,
X is A.
max(A,B,X) :-
max(B,A,X).
This works as expected ...
3
votes
1answer
387 views
Prolog Functor - Computing x^y
I am new to prolog and trying out to learn how to program. I want to know how to compute x^y in Prolog both being integers.
I know for a fact that it goes something like this:
% exp(y,x,z) <- z ...
1
vote
3answers
160 views
Parsing from char to digit Prolog
I have the following:
is_digit(X):-char_type(X,digit).
When I call it like this:
is_digit(X).
I get the folloring results:
X='0';
X='1';
... ;
X='9'
I need to get those same results but ...
1
vote
3answers
155 views
What does +,+ mode in Prolog mean?
So am being told a specific predicate has to work in +,+ mode. What does that mean in Prolog?
5
votes
2answers
373 views
What is the difference between ' and " in Prolog?
I am new to Prolog and noticed that ' and " give different behavior, but am curious as to why. Specifically, when loading a file, ?- ['test1.pl']. works, while ?- ["test1.pl"]. doesn't.
2
votes
1answer
308 views
What is the use of prolog pairs in or outside lists
I encountered several times Key-Value pairs in the SWI-PL doc but couldn't get a good info about them. Is this something standard in prolog or is it just a swi pl only extension ?
Mainly found here : ...
0
votes
4answers
1k views
Getting the minimum value of a list
I am trying to find the minimum value of a list (as a learning experience, so without min).
My approach is the following:
minimo([X], X).
minimo([X,Y|Tail], N):-
(X > Y, minimo([Y,Tail], Y));
...
-2
votes
1answer
497 views
prolog atom concat swi and yap prolog
input :
run([p(X,Y,Z),h(Z,P,Q)],Out).
code:
:- ensure_loaded(library(lists)).
run([X|Y],Out) :-
X =.. [Fct|Args],
X =..Total,
length(Args,L),
concat(abs_,L,Fct_A),
Out =.. ...
0
votes
2answers
804 views
Why doesn't gnu prolog support the “false” predicate? (I've changed to swi)
I've been using the gprolog thingy to do some things in prolog. But now when testing some more code I discovered that it does not support "false". Which is supported by swi?
3
votes
2answers
458 views
Why does SWI-Prolog unify a quoted and unquoted string (without spaces) to the same rule?
Assume I have the following rules:
unify('test', 'this is a test').
run :- write('Enter something: '),
read(X),
unify(X, Y),
write('The answer is '), write(Y).
And then I ...
5
votes
3answers
739 views
What does [a|b|c] evaluate to in SWI-Prolog?
The pipe operator in prolog returns one or more atomic Heads and a Tail list.
?- [a,b,c] = [a,b|[c]].
true.
Nesting multiple pipes in a single match can be done similar to this:
?- [a,b,c] = ...
15
votes
5answers
21k views
'if' in prolog?
Probably a stupid question, but I can't find any documentation anywhere for it. Is there a way to do an if in prolog, e.g. if a variable is 0, then to do some actions (write text to the terminal). An ...

