Originally posted by: Khaled Saeed
Hello,
I have coded a MIP for transportation network problem in Matlab and i'm using Cplex as optimization solver. I'm trying to implement Cplex tuning tool in my code but it doesn't work at all.
i'm trying to add the tuning setting to the options of cplex before solving.
i want to ask if the method i am using below to invoke cplex tuning tool is right or not ? and what is the right way in case its wrong?
------- Part of my code ----------
options.Display ='on';
options.threads=0;
options.ExportModel='Tran.lp';
options.emphasis.mip=1;
options.tuning.timelimit=400;
options.tune.display=2;
[x,fval,exitflag,output]=cplexmilp(S,G,b,Geq,beq,[],[],[],lb,ub,ctype,[],options);
-------------------------------
Thank you in advance.
#CPLEXOptimizers#DecisionOptimization