Skip to main content

Questions tagged [constraint-programming]

For questions on modeling satisfaction or optimization problems in languages designed for expressing (often high-level) constraints on decision variables.

0 votes
0 answers
59 views

I am interested in learning how Constraint Programming solvers implement set cover constraints internally. Specifically, I am curious to know how operations like, constraint propagation, domain ...
Kronton's user avatar
  • 57
2 votes
1 answer
106 views

I am designing a numerical experiment to compare the performance of various nonconvex optimization algorithms (e.g., SGD with momentum, Adam, BFGS, etc.). To do this properly, I need a challenging ...
AVA's user avatar
  • 21
2 votes
1 answer
104 views

I’m studying a job scheduling problem where the precedence constraints are of the start-to-start type — that is, if job (i) precedes job (j), then job (j) can only start after job (i) has started: $$ ...
prakash gawas's user avatar
2 votes
1 answer
95 views

I'm using Docplex's Constraint Programming model with two 4-dimensional binary decision variables: ...
Bree's user avatar
  • 139
1 vote
0 answers
79 views

I am working on CP approach for a problem with many "Select #x of items" type of constraints. It is like a set cover constraint where the goal is to select $x$ out of $n$ items to satisfy ...
batwing's user avatar
  • 1,638
0 votes
1 answer
142 views

I am trying to make an automatic schedule generated for the first workstation for the jobs released based on the total processing time taken by each job at all workstations(excluding wait times in ...
Nagadevi Vaishnavi Dodda's user avatar
7 votes
2 answers
2k views

I am reaching out for help because I feel lost in my current work situation and would like to hear advice from you guys. Currently, as an operations research optimization algorithm engineer at a small ...
CangWangu's user avatar
  • 333
0 votes
1 answer
108 views

Encouraged by this answer I tried formulating my problem in the CP system MiniZinc. When I tried it out on my real problem with ~40k nodes and ~500k edges, it didn't go anywhere, which is not ...
Cactus's user avatar
  • 121
2 votes
1 answer
99 views

Consider the integer linear program (ILP) $$ \max \{ c^T x \mid Ax = b, x \in \mathbb{Z}^n \}, $$ where $A$ is a totally unimodular matrix. It is well known that in this case, the ILP can be solved in ...
Dimension Entangled's user avatar
1 vote
0 answers
48 views

I have a Linear Transshipment problem, the objective is to find for the Minimum cost of the Utilities and i have formulated a code for the constraints in the problem and the variables which are ...
srushti_a's user avatar
1 vote
1 answer
175 views

I am quite new to constraint programming and cp-sat. By following this blog post and example, I have been able to mostly tailor it to suit my shift scheduling. However there is one constraint I would ...
Jackal's user avatar
  • 19
1 vote
1 answer
146 views

I am using the generalized arc consistent algorithm from Regin, J. C. (1996) to propagate the global cardinality constraint. Values are removed from the domain of a variable if the variable node and ...
snap9275's user avatar
0 votes
1 answer
141 views

Im pretty new in the world of CP. Currently Im trying to solved a single machine scheduling problem with changeovers. Here is my code and model: ...
Franco's user avatar
  • 37
2 votes
1 answer
123 views

CPLEX CP Optimizer allows users to set search phases to specify the order in which variables are searched and the method for assigning values, thereby accelerating the search process. However, when ...
Qiu Junyan's user avatar
4 votes
2 answers
1k views

I have recently been working on coding a solution for a assembly line balancing problem. My approach is to first use a greedy algorithm to generate an initial feasible solution, and then apply ...
CangWangu's user avatar
  • 333

15 30 50 per page
1
2 3 4 5
13