Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
9answers
831 views

Possible NP-complete problem?

I'd just like someone to verify whether the following problem is NP-complete or if there is actually a better/easier solution to it than simple brute-force combination checking. We have a sort-of ...
2
votes
2answers
141 views

Building up timetabling problem with lots of variables

I have a classic timetabling problem consisting of the variables classes(~100), rooms(20),terms(8) and weekdays(5). To just simplfy the problem, following are the reduced constraints. A day is 9 ...
1
vote
1answer
69 views

Arc Consistency in Java, questions on implementation

So my goal is to write the method that solves a sudoku puzzle, we were given the method stub "public int[][] solve(int[][] board)". We are supposed to use arc consistency and domain splitting to find ...
1
vote
4answers
144 views

Constraint Satisfaction Problem: Choosing real numbers with certain characteristics

I have a set of n real numbers. I also have a set of functions, f_1, f_2, ..., f_m. Each of these functions takes a list of numbers as its argument. I also have a set of m ranges, [l_1, u_1], ...
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
0answers
110 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
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 ...