The sicstus-prolog tag has no wiki summary.
5
votes
3answers
294 views
Optimizing pathfinding in Constraint Logic Programming with Prolog
I am working on a small prolog application to solve the Skyscrapers and Fences puzzle.
An unsolved puzzle:
A solved puzzle:
When I pass the program already solved puzzles it is quick, almost ...
4
votes
1answer
66 views
problems to deploy a java application
I just finished a Java application to link to Sicstus prolog. Now I need to deploy it but I'm having the following problem, the Sicstus library to link with Java requires that the application be ...
3
votes
3answers
474 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
200 views
Variable binding in Prolog
I have written a predicate common_participant(Person, PairEvent). which returns pairs of facts from my knowledge base. I was wondering whether there is any way to perform variable binding and collect ...
2
votes
3answers
76 views
Use cut in Prolog to define a once_member/2 function
Dislaimer: This is informal and non-assessed coursework to do in my own time. I have tried it myself, failed and am now looking for some guidance.
I am trying to implement a version of the member/2 ...
2
votes
2answers
54 views
Working with logical functors in Prolog
I want to have logical connectives such as
not(X), conj(X, Y), some(Y, K). and I want to be able to iterate over them.
So for example I want to be able to convert not(some(Y, K)), into all(Y, ...
2
votes
4answers
142 views
How to sort by letters *and* numbers in prolog?
I have a list in Prolog like the following:
[(b,y,3),(p,z,1),(p,y,3),(b,y,2),(p,z,2),(p,x,3),...]
where the first element of the first tuple is in [b,p], the second is in [x,y,z], and the third is ...
2
votes
1answer
189 views
Prolog dot product with variables (constraint satisfaction)
Hey everyone, I'm working on a prolog assignment and I'm currently very very close to the solution. So, the problem is a constraint satisfaction problem where I have to find values for a set of ...
2
votes
2answers
331 views
Time comparison in Prolog
Say I have a structure time with the format time(hour, minute). How would I go about writing a rule to compare them? Something along the lines of compareTime(time1,time2) that returns yes if time1 is ...
1
vote
1answer
46 views
Random Labeling
I have a program written in Sicstus Prolog using constraints.
My goal is to use labeling/2 and some other method to obtain a random instantiation of my variables.
Example:
X #> 2, Y #= 2*X, Z ...
1
vote
1answer
70 views
Best way to define predicate in Prolog
I have a problem with defining procedures in prolog.
I have two source files and want to consult prolog engine with both of them.
This can be done by invoking prolog as swipl -g “['1.pl','2.pl'].
...
1
vote
2answers
75 views
Implementing a stack in Prolog
I need a way of doing the following in Prolog.
I want to have a list of variables defined. For example [x,z,k,s,r,v,w]
And then I want one of my functions to be able to pop the first element from ...
1
vote
2answers
266 views
remove : prolog
I am trying to compile csp.pl from "Computational Intelligence book" which solves the constraint satisfaction problem. I want to use this as a base to solve crossword puzzle generator.
But when I try ...
1
vote
2answers
301 views
Prolog: Getting predicate solutions and asserting them as facts
I've got a specific problem but I'll just try and come up with a general question so other people might benefit from it too...
I've got a predicate that returns many solutions i.e.
X=5;
X=2;
X=7
...
1
vote
3answers
115 views
Prolog's =.. functionality
Using Prolog's =.., is it possible to get something such as f(x),g(x) from [f,x,g,x]? I can use H =.. [f,x,g,x] to get f(x,g,x) but this isn't what I want. Apologies if this is a silly question or ...
1
vote
1answer
252 views
Prolog 'listing'
I often used SWI-Prolog's feature of being able to do listing(predicate). to see how it implements some of its predicates. I want to see exactly what it does with succ/2 because I'm using it on ...
1
vote
2answers
211 views
Simple append problems in Prolog
I've been studying Prolog for a few weeks ago and something trivial I keep getting stuck on is coming up with solutions using append.
For example, if I have a pattern matching rule that looks ...
1
vote
1answer
391 views
Pattern Matching in Prolog
Let's say I have this rule:
andR( conj(C,D) ).
So I want it to match with items such as conj(x,y) which is fine. However, how do you get it to match with something more complicated like (i.e. a ...
1
vote
2answers
314 views
Prolog: Getting unique atoms from propositional formulas
I can easily write a predicate to get unique elements from a given list in Prolog e.g.
no_doubles( [], [] ).
no_doubles( [H|T], F ) :-
member( H, T ),
no_doubles( T, F ).
no_doubles( [H|T], [H|F] ...
1
vote
1answer
74 views
Code style preferences using Sicstus and Eclipse (Spider)
i I am currently using Sicstus Prolog VC9 4.1.1 within Eclipse Galileo (Spider). I have got a very newbie question: how can I automatically control indentation and in general code style preferences?
...
0
votes
1answer
31 views
Recursively append result
I have a predicate that calls another predicate. Lets call them predicate A and B.
Since I want to use the result from predicate B in A I do the call like this:
pred_B(Result1,Result2), where Result1 ...
0
votes
1answer
32 views
vertices_edges_to_wgraph predicate: Instantiation error in keysort
I'm trying to create a weighted graph using the built-in predicate "vertices_edges_to_wgraph" (from the wgraphs library) which looks like this:
vertices_edges_to_wgraph(+Vertices,+Edges,-Wgraph)
and ...
0
votes
0answers
53 views
Result in an argument isn't correct
So I have this piece of prolog code:
my_avalia(A, R) :-
A == "Koza" -> koza(R, 0, 0, e, 89).
koza(R, _, _, _, 87) :-
!,
write(R).
koza(R, X, Y, V, C) :-
movex(V, X, X1),
...
0
votes
2answers
113 views
binary predicate to square list and sublists in Prolog
I am new to prolog and was trying to create a binary predicate which will give
a list in which all numbers are squared, including those in sublists.
e.g. ?-dcountSublists([a,[[3]],b,4,c(5),4],C).
...
0
votes
4answers
62 views
Retrieving all the numbers from a given interval in Prolog
I am new into the world of Prolog, and I would like to write a rule that return all the elements in a specific range.
I intend to do something like
Ex:
foo(X, Low, High) :- X > Low, X < High.
...
0
votes
2answers
48 views
Rewrite recursive sicstus prolog function
My goal is to have this input:
L = [a,b,c], build_tree(L,T).
With this output:
L = [1,30,kth,5],
T = b(l(a),b(l(b),b(l(c)))) ?
yes
And with this code, that counts the number of leaves in a ...
0
votes
3answers
235 views
Sicstus Prolog - How to build a tree from a list
Got a problem about how to build a tree from a list.
Example: I've got List = [1,2,3,4] and after running I want to get an answer like this
T = Tree(1, Tree(2, Tree(3, 4)).
I'm new to Sicstus. ...
0
votes
1answer
70 views
Prolog: append a list to itself
suppose I have a list ListSum, and I want to append a new list to ListSum recursively, like
appList(ListSum):-
%%generate a list: ListTemp,
append(ListTemp,ListSum,ListSum),
...
0
votes
1answer
66 views
Prolog: find the last index of an element in a list
Suppose I have a list[1,2,1,3,2,0,8,3,1],I want to find the index of the last 3 which is 7, How to do it in prolog?
Any help would be much appreciated.
0
votes
1answer
32 views
How to redirect the standard output from Sicstus4 to a Java component using Jasper?
I'm using a library called Jasper to link my Java application to the Sicstus4 software. This is working smoothly but when I make a query to it I need to grab the output in order to show it in a ...
0
votes
1answer
141 views
Prolog: Simple DCG question
I've been trying to get used to using DCGs in Prolog and failing.
How can I define a set of grammar rules to accept the language a^n b^n?
E.g. aaaabbbb or ab etc...
Thanks :).
0
votes
1answer
96 views
Java: creating a key binding to close a running Prolog program
I would like to create a little program in Java that runs in the background and that detects a certain combination of pressed keys (in my case the space bar) and that after getting a space bar, sends ...
0
votes
1answer
42 views
Restricting running time in SICStus Prolog
Is it possible to restrict the running time of a query in SICStus Prolog?
0
votes
2answers
113 views
Simple Prolog pattern patching problem
So if I have something like [(a,b,c,d)] and I wish to remove the ()s (in the whole list there will only be one set of parentheses - immediately after the '[' and before the ']'), how come my rule: ...
0
votes
2answers
80 views
Searching Prolog structures
I'm interested in formulae made up from lots of conjunctions (part of a larger problem). I want to write a program that takes something like this:
:- get_params(conj(conj(a,b),c),X)
and returns a ...
0
votes
2answers
149 views
Matching Multiple Lists
I can write a predicate that is satisfied when two lists are equal e.g. equal([2,3],[2,3]) would be true and equal([2,3],[4,5]). would be false.
However, what if I want to have a list and try and ...
0
votes
6answers
486 views
Generalizing Fibonacci sequence with SICStus Prolog
I'm trying to find a solution for a query on a generalized Fibonacci sequence (GFS). The query is: are there any GFS that have 885 as their 12th number? The initial 2 numbers may be restricted between ...