Tagged Questions

3
votes
1answer
96 views

Need Help In Solving A Constraint Problem

I would like to solve the following problem using constraints but i actually don't know where to begin so i decided to post it here for help. *** Fitting squares *** Given the set of black ...
3
votes
1answer
146 views

How to check constraints between elements in a list / is this Constraint Programming?

I have many variable-sized lists containing instances of the same class with attribute foo, and for every list I must apply rules like: if there's an element foo=A there cannot be elements with foo ...
3
votes
3answers
651 views

How to use constraint programming for optimizing shopping baskets?

I have a list of items I want to buy. The items are offered by different shops and different prices. The shops have individual delivery costs. I'm looking for an optimal shopping strategy (and a java ...
1
vote
1answer
53 views

CHOCO Constraint Solver features question

Does anyone know whether CHOCO supports the following: Dynamic Variable Ordering and Precedence Constraints ?
0
votes
1answer
26 views

Quadratic programming solver that guarantees a boundary point?

I have a problem that I have expressed as the minimization of a convex quadratic program with linear constraints. The problem is that I want to disallow any point that is strictly interior (i.e. I ...
0
votes
1answer
90 views

Need Help In Solving A Constraint Problem (2nd)

I have solved the following constraint processing task. Can you please verify if it is correct? One of the prisoners of a high-level security prison sees a way to escape. Almost free, he reaches a ...
0
votes
1answer
337 views

Java Constraints Library (JCL) problem: how to represent addition?

I have to solve a CSP logic problem using Java Constraints Library. For now I've managed to represent some constraints of the problem, most of them are based on "equals" and "not equals" binary ...