Originally posted by: huseyin89
Hello,
I have a non linear mixed integer model in v12.5 within Java. To solve it, we reformulate the nonlinearity and get a mixed integer second order conic model. When we solve the model, we get optimal solution however I know for that problem the given solution is not optimal. The value of the real optimal solution is miscalculated. Since program miscalculates the value of the real optimal solution, it cannot find the optimal solution in reality. Instead it gives a solution as optimal solution which is not optimal.
I tried to change the parameter values as follows:
cplex.setParam(IloCplex.BooleanParam.NumericalEmphasis, true);
cplex.setParam(IloCplex.DoubleParam.BarQCPEpComp, 1e-10);
Although it helps at some instances, still I have same problem with other instances.
Can you please help me?
#CPLEXOptimizers#DecisionOptimization