Originally posted by: TobiasAchterberg
The .lp file format does not preserve the ordering of the variables. Thus, if you do
write model.lp
read model.lp
then you will most likely end up with a permuted problem. But if you do
write model1.lp
read model1.lp
write model2.lp
then model1.lp and model2.lp will be identical.
In contrast to the .lp file format, the .mps file format does not modify the order of the variables.
#CPLEXOptimizers#DecisionOptimization