Originally posted by: prashanw
Whats the best way to iteratively call cplex in python API?
My use case it the following
1. I want to solve the MIP with slightly changed constraints, a number of times. Right now for each iteration I do a cplex.Cplex() and freshly load the changed constraints.
2. While I am iteratively calling cplex, If I keep the order of the objective variables the same but change the order of the constraints (only the order that the constraints are added to linear_constraints.add) is that ok?
#CPLEXOptimizers#DecisionOptimization