Tagged Questions
Constraint satisfaction problems (CSP)s are mathematical problems defined as a set of objects whose state must satisfy a number of constraints or limitations.
51
votes
11answers
8k views
Solving “Who owns the Zebra” programmatically?
Edit: this puzzle is also known as "Einstein's Riddle"
The Who owns the Zebra is an example of a classic set of puzzles and I bet that most people on Stack Overflow can solve it with pen and paper. ...
13
votes
13answers
2k views
Embedded Prolog Interpreter/Compiler for Java
I'm working on an application in Java, that needs to do some complex logic rule deductions as part of its functionality. I'd like to code my logic deductions in Prolog or some other logic/constraint ...
10
votes
8answers
1k views
Getting started with Constraint Programming
Looking for tips, tutorials, books and other resources to get started with Constraint Programming.
9
votes
2answers
278 views
Can anyone suggest a good constraint library for Haskell?
I've started learning about Constraint programming and I feel it is something that would work well with Haskell (also I enjoy using Haskell).
Are there any mature constraint frameworks for Haskell?
7
votes
2answers
355 views
I am looking for a radio advertising scheduling algorithm / example / experience
Tried doing a bit of research on the following with no luck. Thought I'd ask here in case someone has come across it before.
I help a volunteer-run radio station with their technology needs. One of ...
6
votes
4answers
414 views
Constrained graph transformation in scheduling applications
I'm working on an interactive job scheduling application. Given a set of resources with corresponding capacity/availabilty profiles, a set of jobs to be executed on these resources and a set of ...
5
votes
3answers
278 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 ...
5
votes
2answers
280 views
Is Erlang a Constraint-Logic programming language?
Since Erlang is based upon Prolog, does this mean that Erlang is a Constraint-Logic Language?
Does Erlang have Prolog's building blocks: Facts, Rules and Query
4
votes
2answers
291 views
Constraint-programming in PHP
Are there any constraint-programming libraries for PHP? Something that would be capable of handling a situation like this.
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
2answers
283 views
Looking for practical examples of SMT Z3 usecases (like DbC) and open source alternative to Z3?
I have got interested in and looking for practical examples of SMT Z3 usage (like DbC) with code and open source alternatives to this tool. So, in fact, I am interested in similar Z3 formal solving ...
3
votes
1answer
147 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 ...
3
votes
2answers
171 views
What is the relationship between CLP and SQL?
In reading up on constraint-logic programming, I can't help but notice an apparent relationship with SQL programming. Is SQL an example of "constraint logic programming" in action?
3
votes
5answers
878 views
What problems have you solved using constraint programming?
I'd like to know about specific problems you - the SO reader - have solved using constraint programming and what constraint logic language you used.
Questions:
What problems have you used ...
2
votes
0answers
105 views
Constraint programming framework for scheduling problem
I'm going to work on a software application for project planning and I’m looking for a constraint programming library that supports interval arithmetic and constraints on real numbers.
The feature I ...
2
votes
4answers
785 views
Which algorithm(s) can solve this constraint programming problem?
I need to solve a job affectation problem and I would like to find preferably efficient algorithms to solve this problem.
Let's say there are some workers that can do several kind of tasks. We also ...
1
vote
1answer
149 views
Solving jigsaw puzzle with restriction in prolog
I am starting to learn restrictions in prolog at the moment using SICStus Prolog. Though I know how solve simpe problems using this, I have one exercise where I must solve a Jigsaw puzzle. However I ...
1
vote
1answer
85 views
Can't get minimize from CLPFD to work
Me and a friend are writing a program which is supposed to solve a CLP problem. We want to use minimize to optimize the solution but it won't work, because it keeps saying that the number we get from ...
1
vote
0answers
53 views
how to implement a 'nested' cost function in Gecode?
I am new to gecode and constraint programming in general.
So far, I haven't had much trouble picking up gecode, it's great. But I was wondering what is the best way to perform a "nested" cost ...
1
vote
1answer
53 views
CHOCO Constraint Solver features question
Does anyone know whether CHOCO supports the following:
Dynamic Variable Ordering
and
Precedence Constraints ?
1
vote
1answer
93 views
Ordering lists with constraint logic programming
I was wondering if anyone could help me with this problem: I have to order a list using Prolog with Constraing Logic Programming and I must do it with the more efficient way I can.
So the main ...
1
vote
1answer
127 views
KeyError when adding a constraint in python-constraint
I am making a function that takes in a list of drivers and passengers with their locations, and returns a list of allocations of passengers to drivers that maximise the number of passengers assigned ...
1
vote
0answers
118 views
Coin-OR — Extracting Gomory Cuts from Cgl (Coin-Or)
I'm trying to extract Cgl Gomory cuts out of the Cgl (Cut Generation Library) of Coin-Or The following is the code I'm using to extract the cuts -
OsiCuts cutlist;
CglGomory * gomory = new ...
0
votes
0answers
55 views
RCPSP in SMT-LIB (for Z3) - how to model discrete resources
Currently we are creating a Domain Specific Language for the Job Shop Scheduling Problem.
We are using C++ as a front-end and a SMT-LIB supported back-end, currently Z3.
We have a basic program up an ...
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
2answers
74 views
Prolog: iteration
Good evening,
i have a simple problem, and i warn you that i am very new with prolog.
Suppose to have three lists of the same size, each containing only 1s, 0s or -1s.
I want to verify that for all i, ...
0
votes
2answers
86 views
Automatic parameter tuning
I've got a an audio processing app that takes an input audio file, processes it, and spits out a modified output audio file. This audio processing app has 10-15 parameters that affect how it processes ...
0
votes
2answers
86 views
How to write a custom constraint to check that atleast one boolean field in a class is true
I have a class called "Scheduler" which has 7 Boolean fields. I want to write a constraint in hibernate to check that at-least one boolean field is true.
Here is the "Scheduler" class.
public class ...
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
73 views
eclipse IDE windows 7 os importing choco package
i am trying to install the java constraint solver package called choco : http://choco.sourceforge.net/first.html
please let me know how to go about, i have tried several times, with no success.
...
0
votes
0answers
111 views
Sets of equalities and inequalities constraint satisfiability problem
I am relatively new to CSPs and I am trying to find the value of all the variables from their respective domains, based on ==, >, < and != constraints imposed between the variables.
I looked at ...
0
votes
1answer
320 views
Disadvantages of using Solver Foundation for constraint programming
What are the disadvantages of using Microsoft Solver Foundation for CLP? Solver does have some support in the Express/Standard versions, but would imagine that one would need to buy the expensive ...
0
votes
1answer
103 views
typical educational constraint processing examples
I'm writing a course describing several topics of Artificial Intelligence. Currently I'm working on the "Constraint Processing" part. To illustrate constraint processing I would like to include a ...
0
votes
2answers
522 views
Microsoft Solver Foundation constraint
I'm trying to use Microsoft Solver Foundation 2 to solve a fairly complicated situation, however I'm stuck with an UnsupportedModelException even when I dumb down the model as much as possible.
Does ...
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 ...