Originally posted by: PingLiu
I need to solve the problem attached in the file test.zip.
after I run the command in Matlab
[x,fval,exitflag,output] = cplexmilp(f,Aineq,bineq,Aeq,beq,[],[],[],lb,ub,ctype,[],[]);
or
cplex=Cplex(''); cplex.Model.sense = 'minimize';
cplex.addCols(f,[],lb,ub,ctype);
cplex.addRows([-inf*ones(size(bineq,1),1);beq], [Aineq;Aeq], [bineq;beq]);
cplex.solve();
I cannot get any response from matlab after waiting for several tens of minutes.
what's wrong with it?
thanks a lot.
#CPLEXOptimizers#DecisionOptimization