Originally posted by: ThomasGh
Dear Daniel,
Thanks for your answers.
When in concert we read the same parameters("primal.prm"), import the model("primal.sav") and solve just as written below:
IloCplex cplex = new IloCplex();
cplex.readParam(args[1]);
cplex.importModel(args[0]);
cplex.solve();
we do have an optimal solution, just as in the CPLEX interactive console (CPLEX 11.1 32bits).
This is indeed a strange behaviour, because in our application the same model is solved with the same parameters and returns a CPLEX Error 1256 singular basis. (the export model is done just before calling the solve)
Many thanks for your help.
Thomas
#CPLEXOptimizers#DecisionOptimization