Originally posted by: Namal
Hello,
I wrote a program that finds me a set of two binary variables for which my problem becomes infeasible if I fix them. It looks like this.
1. set all variables and constraints
2. add the two fixed variables as constraints
3. solve the problem
4. remove the two constrains
5. repeat with different pairs of variables from 2
The problem is that it becomes really slow and I wanted to ask if there is a way to use solve function in such a way that it doesn't have to compute everything all over again?
#CPLEXOptimizers#DecisionOptimization