Constraint satisfaction problems (CSP)s are mathematical problems defined as a set of objects whose state must satisfy a number of constraints or limitations.

learn more… | top users | synonyms

0
votes
1answer
113 views

fast and simple constraint programming involving vectors (arrays)

I have many,many, many vectors that I need to check for duplicates of numbers with some very basic first order logic. I can use intersections, but that is proving to be too slow. I thought I could ...
1
vote
2answers
41 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
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: ...
1
vote
0answers
40 views

Constraint solving differences in sets

I have a set of five sets of tuples (int myInt, float myFloat) I am looking to scale each set uniformly so that it: Maximizes the number of occuraces where the difference between the pair of myInts ...
0
votes
1answer
21 views

Where I can find data to test my CSP Map coloring solver

I write CSP map coloring problem solver. A definied constraint as Constraint(A, B) what means that country A is adjacent to country B. Currently I create maps by hand but now I need some big map to ...
0
votes
2answers
58 views

Dynamic Flexible constraint satisfaction problems

I am looking for a logic constraint solver with the capability to solve flexible and/or dynamic constraints. Any ideas?
0
votes
4answers
78 views

Power Plant Production Scheduling: Looking for a Fast Algorithm [closed]

I'm trying to optimize the daily production of a natural gas power plant to maximize profits during the day. Here is the problem: The problem is that the space of possible solutions is huge: 6^24 ...
10
votes
2answers
218 views

Any pseudo-polynomial algorithm for bounded 0-1 multi-knapsack?

Suppose that there are n items, e.g i1, i2, .... in, each of them with a known bounded weight w1, w2, ... wn. There are also a set of m knapsacks e.g. k1, k2 and km. Knapsacks are homogeneous, that ...
1
vote
1answer
52 views

Solving a system of equations in Prolog

Assume I have a number X and I wish to solve system of equations, say Y+Z=X, Z*Y = 1. Now, this has solutions Y=1/Z and Z = (sqrt(X*X-4)+X)/2 or (X-(sqrt(X*X-4)))/2. So I can write in Prolog: ...
1
vote
1answer
188 views

Algorithm - Creating an exam schedule

I have a problem of creating an exam schedule based on three factors: rooms, courses, and days. There are a set number of rooms r, courses c, and days d where each day has three slots. There is also ...
0
votes
1answer
59 views

ValueError: Need more than 2123 values

I am trying to run a very large Z3 python program, as the following sample: S, (cl_3,cl_39,cl_11, me_32,m_59,m_81 …………) = EnumSort('S',['cl_3','cl_39','cl_11','me_32','me_59','me_81', …………..]) ...
0
votes
2answers
81 views

constraint programming, repetition of number in a list, prolog

how to limit the repetition of a number in a list. for example, limit(X):- length(X,10), domain(X,1,4), % maximum repetition of each number is 5 times. labeling([],X). ex. [1,1,1,1,1,1,1,1,1] -> ...
12
votes
4answers
349 views

Programming for Young tableaux

A strange question follows: I'm doing a problem solving competition @ my school, and they allow us to use a computer. Since I'm the only one in the competition who knows how to code, I use C and ...
0
votes
1answer
36 views

retrive the matched model in Z3py?

In the following working example , How to retrieve the matched model? S, (cl_3,cl_39,cl_11, me_32,m_59,m_81) = EnumSort('S', ['cl_3','cl_39','cl_11','me_32','me_59','me_81']) h1, ...
0
votes
1answer
65 views

How can i have more than 255 arguments in Z3py function?

I would like to kindly ask , how to have more than 255 arguments in the Z3 Python function h1, h2 = Consts('h1 h2', S) def fun(h1 , h2): return Or( And( h1 == cl_4712, h2 ...
0
votes
1answer
58 views

z3py installation

I am having trouble getting z3 to work with Python. I am running Windows 7 64bit. I have downloaded 64bit Python 3.3.0 and 64bit z3 4.3.0. I have updated my PATH and PYTHONPATH to include the z3 \bin ...
0
votes
0answers
38 views

Formalizing into CSP and AC-3 (AI algorithms)

I am trying to work my head around how to interpret the given problem so that it can be used in a CSP AC-3 algorithm. I have been reading on the AC-3 on several sites and looking the the pseudocode on ...
0
votes
0answers
28 views

Getting hold of IBM iLog Scheduler

I am looking for IBM iLog Scheduler, specifically versions related to the manual at link below which I would like to use to implement projects of a similar kind using the methods provided. I cannot ...
0
votes
0answers
45 views

Dynamic test input generation

Im trying to figure out how to dynamically generate inputs, by generating constraints and solving them for each execution path, for web applications testing purposes. Assume the following PHP ...
0
votes
1answer
44 views

Repeating the matched models in Z3py

In the following working example , I'm trying to retrieve the matched models, in this case there are two satisfying models: t1= cl7 t2= cl4 t3= cl5 and t1= cl4 t2= cl3 ...
1
vote
1answer
70 views

How can i assign (assert) values to functions in Z3py?

I would like to kindly ask , How can I convert the following Z3 constraints into Z3py (Python API). (declare-datatypes () ((S a b c d e f g))) (declare-fun fun1 ( S ) Bool) ...
1
vote
3answers
118 views

Constraint Satisfaction (Hierarchical) Solver

I need to model a constraint satisfaction (CSP) problem either in Java or .NET. The problem requires that a hierarchy of variables is represented. So every node of the tree is a variable. For ...
2
votes
1answer
125 views

Z3 Theorem Prover: Pythagorean Theorem (Non-Linear Artithmetic)

Wherefore? The usecase context in which my problem occures I define 3 random item of a triangle. Microsoft Z3 should output: Are the constraints satisfiabe or are there invalid input values? A ...
0
votes
3answers
96 views

Maximize number of assigned variables in constraint satisfaction

What are some known algorithms (or resources to find algorithms) to find the assignment that maximizes the number of assigned variables in a constraint satisfaction problem (in case no satisfying ...
0
votes
0answers
33 views

Declarative Data Mining: Frequent Itemset Tiling

For a course in my Computer Science studies, I have to come up with a set of constraints and a score-definition to find a tiling for frequent itemset mining. The matrix with the data consists of ones ...
1
vote
0answers
104 views

constraint programming mesh network

I have a mesh network as shown in figure. Now, I am allocating values to all edges in this sat network. I want to propose in my program that, there are no closed loops in my allocation. For example ...
0
votes
1answer
62 views

JAVA- JaCoP Constraints Programming

Please somebody help me with this error Thanks, i Using the JaCoP Library, It´s a transport Problem and i need find the OptimalSearch it's constraints programming Exception in thread "main" ...
0
votes
3answers
72 views

Non-deterministic CSP programming tool? [closed]

Hi i need a non deterministic constraint satisfaction problem tool, because i need different solutions with the same input of the problem. Someone knows about a tool with this characteristic? I only ...
1
vote
1answer
136 views

MiniZinc, Gecode remove solution separators

I have a minizinc model for which I want to find all solutions (I use gecode) then print statistics, this is easy: mzn-gecode -as foo.mzn but this model will generate thousands of solutions and a ...
0
votes
1answer
266 views

constraint satisfaction in java

I am having a problem programming the below problem in java it is a constraint satisfaction problem: If I have constraints like this: x1 + x2 > x3 x2 - x4 = 2 x1 + x4 < x5 Each of x1 to x5 ...
2
votes
0answers
91 views

Deriving equations for finite domain constraint system

The following inequality system is solved for x1 and x2 over the integers. x1 + x2 = l x1 >= y1 x2 >= y2 x1 <= z1 x2 <= z2 l - z1 <= x2 l - z2 <= x1 l,y1,y2,z1,z2 are arbitrary but ...
1
vote
1answer
102 views

prolog constraints

I have the function test(X, Y, Z) :- { Z = Y+X },!. When i run the queries test(1,X,8), test(X,4,8), test(1,5,X) I am able to get a value for X, but if i do test(X, Y, Z) :- { Z = Y**X },!. I ...
0
votes
0answers
84 views

DLV (Disjunctive Datalog) syntax for group formation

I've been trying to get DLV (Disjunctive Datalog) code to generate groups. I was trying an examples from here: http://www.ifets.info/journals/12_4/5.pdf I don't seem to get a result returned for: ...
1
vote
4answers
798 views

Appointment scheduling algorithm (N people with N free-busy slots, constraint-satisfaction)

Problem statement We have one employer that wants to interview N people, and therefore makes N interview slots. Every person has a free-busy schedule for those slots. Give an algorithm that schedules ...
3
votes
2answers
1k views

Solving the Zebra puzzle (aka. Einstein puzzle) using the clpfd Prolog library

I have been given an exercise to solve the zebra puzzle using a constraint solver of my choice, and I tried it using the Prolog clpfd library. I am aware that there are other more idiomatic ways to ...
2
votes
1answer
141 views

Parameter that depends on a Decision in MSF

In Microsoft Solver Foundation, I'd like to know if it's possible to add a parameter who's value depends on a decision value. I.e. I want something to the TSP model, but it should also take in ...
3
votes
1answer
178 views

What's the advantage of SMT-solver over CSP-solver in constraint solving?

SMT-Solver can be used for constraint solving. As we known, CSP solvers are also for constraint solving for many years. So what's the advantage of SMT-solver over CSP solvers?
0
votes
1answer
94 views

Eclipse Constraint Programming - search/6

I'm having trouble understanding this documentation for the search/6 function in the eclipse constraint programming framework. I understand that the choice parameter basically affects the value ...
1
vote
4answers
183 views

Constraint network in Objective-C

I'm writing an Objective C application on Mac OS X 10.7, and I need to solve a problem with arithmetic constraints. For example, I have two equations for a rectangle, a and b are the lengths of the ...
0
votes
2answers
504 views

Constraints programming in java

How to develope an efficent job scheduling with constraints?? The scheduler should include these methods: startBeforeEndOf(Job j) startAfterEndOf(Job j) startBeforeStartOf(Job j) ...
0
votes
1answer
80 views

Variable Summation

How do you do a variable summation in the constraint programming language ECLiPSe (http://www.eclipseclp.org/examples/)? I'm attempting to get this functionality: :- lib(ic). % include the ...
5
votes
2answers
320 views

Reducing a boolean expression

I am having an expression, suppose, a = 1 && (b = 1 || b != 0 ) && (c >= 35 || d != 5) && (c >= 38 || d = 6) I expect it to be reduced to, a = 1 && b != 0 ...
3
votes
2answers
231 views

Programmatically Positioning Shapes — Packing Efficiently

Let's say I have some abstract shapes defined each with a width and height (let's make them rectangles for the sake of simplicity). How can I place as many of them as possible on a single canvas (just ...
0
votes
1answer
71 views

Creating a delayed constraint using the unity term manipulator in prolog

This is my arithmetic inequality expression in prolog: 2*X + 3*Y > 4*Z I used the unity term manipulator like this: Expr =.. [Op, Lhs, Rhs] And now I have Lhs = 2*X + 3*Y, Rhs as 4*Z and Op ...
0
votes
3answers
96 views

How to identify the inequality involved in an arithmetic expression specified by a prolog query?

I am working on prolog and faced this scenario - In my query, I pass something like this: ?- query( 2*X + 3*Y >= 3*Z ) Now, what I would like to do is have the prolog program capture the ...
1
vote
1answer
74 views

how to run suspended goals in prolog with constraints

I am trying to solve a specific problem using prologs constraint solvers, and I'm stuck :D A more general version of my problem requirement is the like this: :- lib(ic).:- lib(ic). solve( ...
0
votes
1answer
183 views

Dynamic CSP with Cplex

Do you know if there's a way to change some constraints in an already solved Cplex constraint optimization problem, and solve it again but with the result being as close as possible to the previous ...
1
vote
1answer
244 views

Complete Graph k-Coloring Solver

I am looking for a complete CSP solver, meaning it will always find a solution if it exists and will tell you if no solution exists. A solver that is optimized for graph coloring is preferred, but not ...
6
votes
3answers
584 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
43 views

Meeting scheduling variation

Please point me in the right direction. I am new to CSP and I am wondering how to model following variation of the MSP problem (university example): Given L lectures, every lecture Li has some ...

1 2