equal
deleted
inserted
replaced
41 LpCplex* newlp=new LpCplex(); |
41 LpCplex* newlp=new LpCplex(); |
42 return *newlp; |
42 return *newlp; |
43 } |
43 } |
44 |
44 |
45 LpSolverBase &LpCplex::_copyLp() { |
45 LpSolverBase &LpCplex::_copyLp() { |
|
46 ///\bug FixID data is not copied! |
46 //The first approach opens a new environment |
47 //The first approach opens a new environment |
47 LpCplex* newlp=new LpCplex(); |
48 LpCplex* newlp=new LpCplex(); |
48 //The routine CPXcloneprob can be used to create a new CPLEX problem |
49 //The routine CPXcloneprob can be used to create a new CPLEX problem |
49 //object and copy all the problem data from an existing problem |
50 //object and copy all the problem data from an existing problem |
50 //object to it. Solution and starting information is not copied. |
51 //object to it. Solution and starting information is not copied. |