Cplex gives two different results?
问题 I use Python API in Cplex to solve a Linear programing problem. When using Cplex, I had the result below: But then I saved my LP prolem as a lp file and use Cplex to solve again, the result was a little bit difference from the first one: Anyone gives an explanation? Below is my function: def SubProblem(myobj,myrow,mysense,myrhs,mylb): c = cplex.Cplex() c.objective.set_sense(c.objective.sense.minimize) c.variables.add(obj = myobj,lb = mylb) c.linear_constraints.add(lin_expr = myrow, senses =