Originally posted by: LeonardH
Hey Mary,
thanks for the answer! In the last couple of days we figured out a lot of new things and this was a great help.
Unfortunately, we still have a problem:
At the moment we write our model with the cplexmilp(...) command. In the link, you posted, the model is written with the Cplex() command.
Is it possible to combine these two methods? Or to clarify: Is it possible to add indicators, collumns etc. to the cplexmilp-model?
Here how it looks right now:
options = cplexoptimset('cplex');
options.diagnostics = 'on';
options.timelimit = 1*60;
options.exportmodel='test.lp';
options.mip.tolerances.mipgap = 2e-4;
[x,TotCost,exitflag,info] = cplexmilp(F,Ages,B,Aeq,beq,[],[],[],lb,ub,ctype,[],options);
Hope I made myself understandable!
#DecisionOptimization#OPLusingCPLEXOptimizer