Originally posted by: nr-mz
Hello everybody
I would like to write you to draw your attention on an issue i am dealing with. Any helping idea is appreciated.
Actually I am using cplex 12.6.1 for solving a model in Resource Constrained Project Scheduling Problems. The binary decision variables of the model is defined as following:
Zit =1 if activity i starts at time period t, 0 otherwise.
For setting a time window in start of the activities, as it is also dealt with in the other seminal works in literature,I have defined the earilest and latest start date for activities. The relevant constraint in OR model is:
For all i belong to activities, Sigme (over t , t from earliest start(i) to latest start(i)): Zit =1;
Obviously, the total number of binary variables of the model would be: sigma (over i): latest start(i)- earliest start(i).
In order to reduce the solution time of the model, an idea could be to reduce the total number of binary decision variables. For that purpose, I am using an algorithm that can sucessfully tighten the interval (ealiest star(i), latest start(i)). But after resolving the model with new tighten intervals ( that is to say with less binary variables) the solution time of the model increases significantly !!!
In deed, I am wondering what could be the reason of this issue.
Could anybody, please, give me helping ideas..
Best regards
#CPLEXOptimizers#DecisionOptimization