I am working on a employee scheduling problems (assigning shifts to temporary workers) by modeling it as a MIP. There is a one shift per day constraint for the employees that restricts more than one shift per day. While doing that we have overnight shifts and need to take care of the day boundaries -- for example an employee working between 8pm on a day till 2am the next day can not start their shift the next day without having a rest time of x hours. So in summary, there are overlapping shifts and need to choose a single shift from the set of overlapping shifts. There can be multiple such overlapping groups for a single employee. We have modeled it as mutual exclusive constraints. But the problem is that in certain cases,the number of variables in such constraints is quite big (1000+) and these are all binary variables. So the problem is getting hard to solve pretty fast. I wanted to know if there is any other way to model this or can we simplify in any way. Thank you.
2026-03-26 22:50:15.1774565415
Mutual exclusivity variables in mixed integer programming problems
35 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
There are 1 best solutions below
Related Questions in MIXED-INTEGER-PROGRAMMING
- Is this statement implying that a binary variable can be between 0 and 1?
- System of Linear Inequalities to create feasible solution $y=\min(x_1,x_2)$
- Ensure (or limit) consecutive presence of variable in MILP
- MILP constraints with truth table
- Is there any mixed integer linear programming module capable of handling integer variables exactly?
- Solve $n * \lceil{\frac{R}{T}}\rceil - \lceil{\frac{R*n}{T} - \frac{x*n}{T}}\rceil = \frac{x * n}{C}$ for x and n, $n \in Z^+$ and $x,R,T,C \in R^+$
- Table formulation in Mixed Integer Programming
- How to optimize for following cost function?
- How to linearize the following constraint? (a summation of a product of a integer with a bounded continuous variable)
- Convert nonlinear constraint to linear constraints for mixed-integer linear programming in MATLAB
Trending Questions
- Induction on the number of equations
- How to convince a math teacher of this simple and obvious fact?
- Find $E[XY|Y+Z=1 ]$
- Refuting the Anti-Cantor Cranks
- What are imaginary numbers?
- Determine the adjoint of $\tilde Q(x)$ for $\tilde Q(x)u:=(Qu)(x)$ where $Q:U→L^2(Ω,ℝ^d$ is a Hilbert-Schmidt operator and $U$ is a Hilbert space
- Why does this innovative method of subtraction from a third grader always work?
- How do we know that the number $1$ is not equal to the number $-1$?
- What are the Implications of having VΩ as a model for a theory?
- Defining a Galois Field based on primitive element versus polynomial?
- Can't find the relationship between two columns of numbers. Please Help
- Is computer science a branch of mathematics?
- Is there a bijection of $\mathbb{R}^n$ with itself such that the forward map is connected but the inverse is not?
- Identification of a quadrilateral as a trapezoid, rectangle, or square
- Generator of inertia group in function field extension
Popular # Hahtags
second-order-logic
numerical-methods
puzzle
logic
probability
number-theory
winding-number
real-analysis
integration
calculus
complex-analysis
sequences-and-series
proof-writing
set-theory
functions
homotopy-theory
elementary-number-theory
ordinary-differential-equations
circles
derivatives
game-theory
definite-integrals
elementary-set-theory
limits
multivariable-calculus
geometry
algebraic-number-theory
proof-verification
partial-derivative
algebra-precalculus
Popular Questions
- What is the integral of 1/x?
- How many squares actually ARE in this picture? Is this a trick question with no right answer?
- Is a matrix multiplied with its transpose something special?
- What is the difference between independent and mutually exclusive events?
- Visually stunning math concepts which are easy to explain
- taylor series of $\ln(1+x)$?
- How to tell if a set of vectors spans a space?
- Calculus question taking derivative to find horizontal tangent line
- How to determine if a function is one-to-one?
- Determine if vectors are linearly independent
- What does it mean to have a determinant equal to zero?
- Is this Batman equation for real?
- How to find perpendicular vector to another vector?
- How to find mean and median from histogram
- How many sides does a circle have?
It will depend a bit on what language you're modelling in and what solver you're using. Some languages are designed for this kind of problem, for example in MiniZinc there are scheduling constraints so that you can directly specify that certain resources cannot be allocated to overlapping tasks or shifts (and you can incorporate rest times into those constraints as well).
If you don't have access to that kind of constraint, then you will have to find other ways to implement them, and unfortunately they are going to involve a lot of variables because scheduling is a complicated problem. One way to improve the efficiency of the program may be to add some redundant constraints - that is, introduce constraints that are already logically implied by the model that may help the solver to eliminate bad solutions more quickly. This might involve, for example, tightly bounding the total number of hours worked by all employees across all shifts.