Tagged Questions
An open source implementation of prolog(programming language)
8
votes
2answers
593 views
Why is this prolog query both true and false?
My SWI-Prolog knowledge base contains the following two facts:
f(a,b).
f(a,c).
Now if I pose the query
?- f(a,c).
true.
But
?- f(a,b).
true ;
false.
Why is f(a,b) both true and false? This ...
6
votes
5answers
214 views
How Concurrent is Prolog?
I can't find any info on this online... I am also new to Prolog...
It seems to me that Prolog could be highly concurrent, perhaps trying many possibilities at once when trying to match a rule. Are ...
6
votes
2answers
156 views
NP-complete problem in Prolog
I saw this ECLiPSe solution to the problem mentioned in this XKCD comic. I tried to convert this to pure Prolog.
go:-
Total = 1505,
Prices = [215, 275, 335, 355, 420, 580],
...
6
votes
1answer
3k views
Prolog - ASSERT and RETRACT
I was wondering, I am aware you can use assert to add facts or rules or whatever if you have declared the predicate to be -:dynamic, but this only allows the changes that are made to be kept in that ...
5
votes
5answers
419 views
How use Prolog from Java?
In the context of a Java/Eclipse application I would like to use Prolog for a particular task. What are the available solutions and tools to do that, and associated pro and cons ?
I can launch an ...
5
votes
2answers
381 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] = ...
4
votes
1answer
54 views
Can I use variables with assert/1?
What I have now checks that X(Y) is not an accepted fact in my small DB. Since X(Y) returns false it will attempt to assert it. (I realize this presents problems when X is a rule and not a fact)
...
4
votes
2answers
93 views
prolog Searching the Lists
I am trying to compare the lists. Given function(List1,List2) and List1 has length N and List 2 has length M and N>M.
I want to check if any permutation of List2 happens to be the first M characters ...
4
votes
1answer
224 views
How to query RDF/OWL using SWI-Prolog's Semantic Web Library?
How can I use the SWI-Prolog Semantic Web Library to make a query into the OWL/RDF file and extract some information?
The OWL/RDF file is having information about all the Debian packages so I need to ...
4
votes
1answer
106 views
Prolog Common Differences, Next Number in Polynomial Sequence
I'm trying to implement a simple algorithm for common differences(http://www.purplemath.com/modules/nextnumb.htm) in Prolog (to which I am pretty new) and I seem to be having trouble coming up with ...
4
votes
3answers
322 views
Cards representation in prolog
I'm trying to learn prolog. This are my first steps with this language. As exercise I want to write program which can recognize some poker hands (Straight flush, Four of a kind, Full house etc.).
I'm ...
4
votes
1answer
440 views
Using recursion an append in prolog
Lets say that I would like to construct a list (L2) by appending elements of another list (L) one by one. The result should be exactly the same as the input.
This task is silly, but it'll help me ...
4
votes
1answer
165 views
Two stars in a Prolog list
what are the two stars in a list?
[53, 5, 1, 53, 97, 115, 53, 50, 52, 121, 55, 56, 55, 97, 4, 1, 98, **]
I tried searching but no success.
Thanks,
Jan
3
votes
2answers
74 views
PROLOG: predsort/3 like msort/2
I would like to know is it possible to use predsort without losing duplicate values?
And if not, that how should I sort this list of terms?
Current sort function:
compareSecond(Delta, n(_, A, _), ...
3
votes
3answers
97 views
What does the s() predicate do in Prolog?
I have been trying to learn Prolog, and am totally stumped on what the predicate s() does.
I see it used often and there is so little resources on the internet about prolog that I cannot find an ...
3
votes
3answers
92 views
Efficient Mutable Graph Representation in Prolog?
I would like to represent a mutable graph in Prolog in an efficient manner. I will searching for subsets in the graph and replacing them with other subsets.
I've managed to get something working ...
3
votes
3answers
110 views
Prolog question
How would I write the following in prolog?
a -> b V c
In English that would be a implies that b or c (or both)
3
votes
1answer
76 views
Testing Prolog Difference lists
I've been reading about how great difference lists are and I was hoping to test some examples from the books. But it seems that you can't pass lists as input in just the same way as, for instance ...
3
votes
2answers
131 views
Prolog, using expressions
I'm trying to learn SWI prolog,
but my simple program fails when I believe it should succeed.
%My code:
orthogonal((X1,Y1,Z1),(X2,Y2,Z2)) :- (X1*X2)+(Y1*Y2)+(Z1*Z2)==0.
integerVector((X,Y,Z)) :- ...
3
votes
2answers
170 views
Learning prolog
I am trying to learn prolog and i have a really big problem to convert my programming knowledge to this language. I cant solve really newbie problems.
For example i have this
a(b(1)).
a(b(2)).
...
3
votes
2answers
103 views
Prolog predicate defined as boolean OR of 2 goals?
I'm wondering how to make a predicate in Prolog which evaluates to "true" if either one of its goals is provable.
I have this program:
adjacent(place1, place2).
distance(X, Y, 1) :-
adjacent(X, ...
3
votes
1answer
212 views
problem with list intersection, prolog!
ok, so there's basically 3 tasks this program must carry out:
Parse a sentence given in the form of a list, in this case (and throughout the example) the sentence will be ...
3
votes
2answers
110 views
behaviour of unification in prolog in presence of arithmetic operators
12 ?- 3+4*5 = X+Y.
X = 3,
Y = 4*5.
13 ?- 3+4*5 = X*Y.
false.
16 ?- 3*4+5 = X*Y.
false.
I was expecting
13 ?- 3+4*5 = X*Y.
X = 3+4, Y = 5.
16 ?- 3*4+5 = X*Y.
X = 3, Y = 4+5.
Is there some ...
3
votes
2answers
119 views
Question about rules in prolog . .
In my program I have some rules like:
tellme(X) :- knows(X).
tellme(friends1(X)) :- tellme(X).
tellme(friends2(X)) :- tellme(X).
tellme(friends3(X)) :- tellme(X).
.
.
.
.
tellme(friends25(X)) ...
3
votes
1answer
176 views
sudoku solver infinite recusion
I am writing a sudoku solver. It has been a long time since I have touched prolog, thus I don't remember everything regarding unification, backtracking, etc. I think that I cause the system to ...
3
votes
2answers
418 views
RegEx Parser written in Prolog
I've been banging my head against the wall on this homework problem for a few hours now. We have to parse a regular expression with Prolog. For the most part, the predicates I have work, but there's ...
3
votes
2answers
158 views
Prolog programming - simple negative question
My database is:
eat(magi,limo).
eat(nona,banana).
How do I ask: "Who's not eating limo?" This:
eat(X,not(limo)).
Doesn't work. :(
3
votes
1answer
692 views
loading files in prolog
hey guys, am a bit of a newbie in prolog. And am going thru this tutorial on line and it is telling me i can load other prolog files by typing:
[filename].
but ever time I try this am getting
ERROR: ...
3
votes
3answers
457 views
Un-trivial Prolog find and replace
So we can easily find and replace an atom with another atom in Prolog by doing something like:
replace([],A,B,[]).
replace([H|T],A,B,[B|Result]) :-
H=A,
replace(T,A,B,Result),!.
...
3
votes
1answer
176 views
Is there a way to make swi prolog print its currently working inference tree?
It would be a great help on my course.
3
votes
1answer
88 views
Unexpected output of a Prolog script
leftHand(empty).
rightHand(empty).
inHands :-
write("Left hand:"),
nl,
leftHand(X),
tab(2),
write(X),
nl,
nl,
write("Right hand:"),
rightHand(Y),
tab(2),
...
3
votes
1answer
226 views
Extending a Prolog goal through recursion?
I've implemented (finally) a few goals that will schedule a series of tasks according to a startBy startAfter and duration. The schedule goal however, accepts only the prescribed number of tasks. I'd ...
3
votes
1answer
642 views
How do I wire up my Java UI to a JPL Prolog application?
I'm writing an application in Java using JPL provided by SWI-Prolog to call Prolog from Java.
I'm using Eclipse as the IDE. I don't know how to start this example I found online:
Here the java ...
3
votes
3answers
311 views
Becoming operational in Prolog ASAP
May be this sort of question has been asked many times( as I see the list when I move the cursor to this messagebox), But my company has a project running in Prolog and I want to clarify few things ...
3
votes
3answers
1k views
Prolog : Learning by example
I am trying to learn a little bit about swi-prolog (beyond the basic, useless programs).
Can anyone explain (perhaps in pseudocode) what this sudoku solver and the related functions are doing? If ...
3
votes
3answers
3k views
Prolog Operator =:=
There are some special operators in Prolog, one of them is "is", however, recently I came across the =:= operators, and I have no idea how it works.
Can someone explain what the operator does, and ...
3
votes
1answer
3k views
How to use JPL (bidirectional Java/Prolog interface) on windows?
I'm interested in embedding a Prolog interpreter in Java. One option is using JPL, but the download links on the JPL site are broken, and the installation page mentions a jpl.zip that I can't find. I ...
2
votes
1answer
31 views
Convert peano number s(N) to integer in Prolog
I came across this natural number evalutation of logical numbers in a tutorial and it's been giving me some headache:
natural_number(0).
natural_number(s(N)) :- natural_number(N).
The rule roughly ...
2
votes
2answers
58 views
printing business cards - a kind of knapsack task
I am new to Prolog and I have some probably simple issue with a piece of code. This is a real world problem that arised last Friday and believe me this is not a CS Homework.
We want to print business ...
2
votes
2answers
59 views
Which is more common practice in Prolog?
I'm writing a rule that searches a database of facts in the form:
overground(Station1, Station2, DurationOfTravel).
and allows to you search for all journeys that take the same duration of travel.
...
2
votes
1answer
54 views
SWI-Prolog How Prolog handles logical comparisons
I have written the following code in SWI-Prolog:
:- dynamic state_a/1 .
:- dynamic state_b/1 .
:- dynamic state_c/1 .
state_a([1,2,3,4,5,0]).
state_b([0]).
chop(LIST,HEAD,TAIL) :- ...
2
votes
1answer
58 views
I want to create dynamic facts in prolog
I wrote the following simple code, and I expect that when I write 'male.', this code ask me once "is it male?" and if i input 'No' it write on screen "she is female".
male :- ( print('is it male ? ...
2
votes
2answers
72 views
Logical not in Prolog
The problem that I face, is a bit trivial.
I want to use logical not in Prolog, but it seems that Not/1 is not the thing that I want:
course(ai).
course(pl).
course(os).
have(X,Y) :- ...
2
votes
2answers
72 views
prolog compare SOS
let say i had this two facts.
animal(fifi,10).
animal(fofo,20).
If i call
animal(X,Y).
then prolog will return me
X = fifi,
Y = 10 ;
X = fofo,
Y = 20.
What I need to do, to let to prolog only ...
2
votes
2answers
51 views
Prolog inheritance rule
To determine the animal is bulldog, I have the following predicates:
bulldog(X):-
body(X,muscular),
weight(X,heavy),
face(X,wrinkled),
nose(X,pushed-in).
If I had a dog, call him ...
2
votes
1answer
83 views
Building a List in Prolog
It's my first time programming with Prolog and I have some trouble grasping how the language is to be used exactly. I'm building a program that analyses a puzzle and returns a list of actions (path) ...
2
votes
1answer
28 views
Exporting predicates using :- module
I know I can export predicates for a module by using the standard declaration:
:- module(my_test, [hello/1]).
hello(a).
hello(b).
But wanted to know is there another way I can export predicate ...
2
votes
4answers
83 views
What is the bottleneck in this primes related predicate?
So here it is : I'm trying to calculate the sum of all primes below two millions (for this problem), but my program is very slow. I do know that the algorithm in itself is terribly bad and a ...
2
votes
3answers
96 views
PROLOG: Check if first list contains 3 times less of each element than second list
I need to check if each element in second list has 3 times more instances then the same element in the first list. My function returns false all the time and I don't know what I'm dong wrong.
Here is ...
2
votes
3answers
113 views
Remove members of given list, which appear after a sublist
I'm trying to remove of all members of a list appearing after a sublist [z,z,z] in Prolog.
f.ex removeafterZZZ([a,b,c,z,z,z,a], X) -> X = [a,b,c,z,z,z].
I have the methods sublist and join given.
...