Originally posted by: MDG
My main model is complex! so I made a simple model (as follows) to figure out the problem! But, the problem still exists and I couldn't find it :( Yes, it is so strange to me. What can be the potential problem on my second machine? Is there any setting that allow me to manually force the ILOG to use CPLEX? (my second machine is a Virtual Machine that I remotely have access to)
.mod file :
using CPLEX;
{int}surgery=asSet(1..7);
int N[surgery]=...;
dvar int+ R[surgery];
maximize
sum(k in surgery)
N[k]*R[k];
subject to{
Shortagetest:
forall(k in surgery)
R[k]<=800;
}
.dat file
N=[30, 20, 10, 10, 12, 11, 10];
#DecisionOptimization#OPLusingCPLEXOptimizer