lemon/lp_cplex.cc
changeset 2343 21587bc5922b
parent 2312 07e46cbb7d85
child 2361 f2ef1aa8189a
equal deleted inserted replaced
17:69799e1e24b3 18:206a2a18cf14
    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.