Originally posted by: SystemAdmin
I have a model with two binary variables x[i][j] an y[i]; converted x to continuous, in the range of 0.0 - 1.0 using IloConversion, as follows, for all variables x:
cplex.add(cplex.conversion(x[i][j], IloNumVarType.Float));
however, the computational time rises with a model relaxed (15.49 sec), in comparison of the model not relaxed (1.73 sec). Is normal this in relaxation model in CPLEX? or missing something in the code?
--
#CPLEXOptimizers#DecisionOptimization