Originally posted by: AdamGregory
Hello everyone,
Can interval intensity be used as a decision variable for a scheduling problem using constraint programming under IBM CPLEX?
All of my approaches so far have been met with a compilation error saying that "Decision variable (or expression X) not allowed"
Here is an example use:
Suppose I manage construction of houses. Each housing project is made up of a number of task intervals which have a given precedence and size and must be completed before a deadline. There is a limited number of workers available to work on each housing project and only one worker can work on a given task at a time. Once started, a task can not be interrupted.
Completion of a task can be sped up by paying an additional fee per time unit a worker is working at an increased rate.
The objective of the optimization is to ensure that each construction project is completed before the deadline while minimizing the additional cost paid to workers to speed up task completion.
I had hoped to model this behavior using (a) stepFunction decision variable(s) for task interval intensity, but I am running into difficulties.
Can anyone describe how this behavior can be modeled using interval intensity or suggest an alternative approach?
Thanks for your help.
#CPLEXOptimizers#DecisionOptimization