Originally posted by: sana_
Hi,
I am solving a problem with a column generation. So, I populate it by columns.
Then, I want to branch by adding dynamically somme constraints like this :
IloRangeArray my_dynamic_constraints; // declared in the beginning of the program
In each iteration : my_dynamic_constraints.add(IloRange(env, 1, Linear Expression Variables, 1, Name_Constraint));
But when I export the lp file, no constraints are added !
#CPLEXOptimizers#DecisionOptimization