SICStus Prolog is an ISO-standard compliant Prolog dialect developed at the Swedish Institute of Computer Science (SICS). The most recent version of SICStus Prolog is 4.2.3 (10/2012).

learn more… | top users | synonyms

0
votes
1answer
26 views

How to assign value to a variable in CLPFD?

There is the predicate indomain/1 in manual that assigns values to a variable (let's call it X) in increasing order via backtracking. I would like to change the order of values that are assigned to ...
0
votes
1answer
12 views

How to sort by key AND value in SICStus Prolog?

I have a list like L = [0-4, 0-3, 3-5, 1-2] and I would like to sort the list by key and value so the result would be L = [0-3, 0-4, 1-2, 3-5] I found keysort but it sorts only by key. I can ...
1
vote
2answers
46 views

How to shorten following program?

I would like to shorten the following program. Just imaging there are tens of variables instead of just X and Y. The problem is that I need to define domain for each variable separately. I don't like ...
2
votes
1answer
48 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
31 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 ...
0
votes
0answers
12 views

How to clear screen in SICStus Prolog

I'm using SICStus 4.2.0 and I was not able to find out how to clear the content of the console. Is it even possible?
1
vote
2answers
42 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) ...
1
vote
1answer
32 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
0answers
29 views

Calling exe program with arguments from Prolog code in Windows

How can I run an exe program from my Prolog code and then use the output(which are Prolog predicates) produced by the program in my code? Specifically, I have been trying to access the output of ...
0
votes
0answers
10 views

prolog predicate that succeeds in finding larger numbers

My goal is to write a predicate greaterthan/2 that succeeds by binding the second argument to integer numbers that are greater than the first one. My initial idea was rather naive: greaterthan(X,Y) ...
1
vote
2answers
69 views

replacing list elements in sicstus prolog

I am writing a Prolog predicate that takes arguments (A1, A2, L1, L2) and succeeds if all occurences of A1 within L1 have been changed to A2 in L2. i.e.: | ?- replace(a, b, [a], X). X = [b] ...
1
vote
1answer
52 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.
0
votes
1answer
209 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
158 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 ...
0
votes
2answers
31 views

filter a range using a hash kind of list

I am c++ guy and i am completely new to prolog. I am using sicstus prolog. i came across a need as below: lets say i have a variable A={0,1,2,3} B={-2,-1,0,1,2,3,4,5} and i have hash kind of ...
0
votes
1answer
35 views

How to put information into prolog

> The father sat to the right of the person who had corn, > who sat to the right of the person who ate pork, who sat to the right of the > person who had baked potato, who sat to the right ...
0
votes
1answer
70 views

is “save_program/1” broken in Sicstus Prolog 4.2 on a Windows7 64bit machine?

I started sicstus from my Cygwin prompt on my Windows7 64bit installation, and created a prolog program. Then I saved it using the following command that created the file "test.sav" in my current ...
0
votes
1answer
39 views

difficulty with deep lists

This is my code and it doesnt work. skip([], []). skip([H|T], [H|R]):- atomic(H), !, skip(T, R). skip([_|T], R):- skip(T, R). tails([], []). tails([H|T], R]):- atomic(H), ...
1
vote
2answers
177 views

Prolog: how to find and remove min element of list?

I need help writing a predicate which finds and deletes the minimum element in a list. I am new to prolog. Thank you very much!
1
vote
3answers
85 views

separate parity

Write a predicate which takes as input a list of integers, L, and produces two lists: the list containing the even elements from L and the list of odd elements from L. ?- separate_parity([1, 2, 3, 4, ...
3
votes
2answers
121 views

List inequality constraint

I am trying to write a Prolog (CLP) predicate that would build a constraint constraining inequality of two lists. More formally, having two lists A=[A1,...,AN], B=[B1,...,BN] the constraint is ...
0
votes
0answers
66 views

CuFrog solving using CLPFD

Ok, so I have this puzzle that is called the CuFrog, that consists in filling a 3x3x3 cube with a number in each position but leaping over a position when going from one to the other. For instance, ...
1
vote
1answer
158 views

Task Schedule sicstus prolog

I started sicstus prolog recently and have this homework to solve with CLP (constraint logic programing), please help me understand the problem, what I should be looking for and what I'm doing wrong. ...
1
vote
3answers
111 views

Prolog check list of numbers are in order

I would like to be able to take a list of numbers and get the largest sequence of numbers that are in order. For example: [1,2,3,4,5] would return 5 [1,2,5,6,7,8,4] would return 4 I have so far ...
0
votes
1answer
39 views

how do I get the lists of list' first element in Prolog?

let say we have lists of list (Size random) eg. [[1,2,3],[4,5,6],[7,8,9]]. how do I write a predicate that gets [1,4][4,7][2,5][5,8][3,6][6,9] Thank you in advance!
0
votes
1answer
93 views

How do I get every consecutive elements from a list in Prolog

Let say I have a list [[a,b,c],[d,e,f],[g,h,i]] I want to get every consecutive element and put it in another predicate. func(a,b). func(b,c). func(d,e). func(e,f). func(g,h). func(h,i). I ...
1
vote
2answers
1k views

Prolog Constraint Processing : Packing Squares

I'm trying to solve a constraint processing problem in prolog. I need to pack 4 squares of 5x5,4x4,3x3 and 2x2 in a grid of 10x10. They may not overlap. My variables look like this: Name: SqX(i), ...
1
vote
4answers
152 views

Getting an order into predicate resolution

Look at the following goals (I am using swi-prolog with clpfd from Markus Triska): result(Input,Result) :- Input #> 10, Result=decline. result(Input,Result) :- Input in 0..20, ...
1
vote
1answer
31 views

Need to get the current year from the system in prolog

I'm new to stackoverflow and to Prolog. I want to get the current year and use it in a comparison like 'BD > currentYear'. From the research I've been doing, I think i need to use ...
0
votes
2answers
79 views

Categorise List in Prolog

Alright so I am coding a parser for arithmetic equations. I get the input in a list, e.g. "10+20" = [49,48,43,50,48] and then I convert all the digits to there corresponding numbers e.g. ...
0
votes
3answers
172 views

SICStus Prolog Lists

Having trouble understanding how Prolog works. I'm tryig to write a rule that takes three lists of integers as input (representing sets) and puts the integers that belong to both the first and second ...
1
vote
1answer
113 views

swi-prolog user login and registration

I have user input/ login as following: login:- write('username: '), read(User), nl, write('password: '), read(Pass). and i have a database with usernames and passwords. I use find predicate to get ...
1
vote
1answer
172 views

Sicstus Prolog: Deck of Cards Query

I am working through this question: In a four-player game of bridge, each player gets 13 cards, dealt in order. Write a predicate deal(Cards, H1, H2, H3, H4) that takes a deck as its first argument, ...
1
vote
1answer
68 views

Sicstus Prolog: display current bindings during debugging

I'm very new to Prolog and have been using Sicstus to help debug my code. Is there a way to view all the bindings while you are stepping through a query using trace/0? Or is there some other way to ...
0
votes
2answers
114 views

What happened to “Compile Prolog Code” (Alt+K) in the SICStus Eclipse SPIDER menu in Juno?

I just upgraded from Eclipse Indigo to the Classic Eclipse 4.2 Juno, by downloading from this URL: ...
0
votes
1answer
151 views

Prolog association list

I am writing a simple program safety checker in Prolog and I need a data structure to hold variable valuation. Since I want to detect when I am visiting same state again, this structure must support ...
1
vote
3answers
88 views

State propagation during bactracking in Prolog

Let's assume, that I have a simple program in Prolog, which is searching through a certain state space: search(State, State) :- is_solution(State). search(State, Solution) :- generate(State, ...
-1
votes
1answer
297 views

Prolog powerset predicate [closed]

I wish to define a predicate powerset(X, P) which is true when P is the powerset of X. Should work whether or not P is ground.
0
votes
1answer
61 views

Using In_set Constraint

I am trying to use constrain X to not being a value in a list. From Sicstus manual: ?X in_set +FDSet I can't figure out how to convert from a list to a FDSet though. I have a list of integers [2, ...
1
vote
2answers
157 views

Creating a standalone exe file from sictus prolog pl file windows

I have a sictus prolog file (.pl-file) that I would like to export as an exe-file to run on another computer. Searching through SICS documentation and playing around with spld gave me an exe file ...
2
votes
2answers
86 views

Switching Modes in Prolog on the Windows Command Line

The Sicstus Prolog manual says to user "| ?- consult(user)." to enter clauses and to "to return to top-level, type ^D.". However, I am using Windows and the manual doesn't have Windows instructions. ...
-1
votes
1answer
63 views

Recursively append result [closed]

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
74 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 ...
3
votes
2answers
148 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 ...
2
votes
1answer
518 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']. ...
6
votes
3answers
587 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 ...
0
votes
0answers
72 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), ...
1
vote
2answers
789 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 ...
2
votes
3answers
148 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 ...
3
votes
2answers
129 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, ...

1 2