lemon/cplex.cc
changeset 551 9d0d7e20f76d
parent 540 9db62975c32b
child 576 745e182d0139
     1.1 --- a/lemon/cplex.cc	Wed Mar 18 16:18:05 2009 +0000
     1.2 +++ b/lemon/cplex.cc	Thu Mar 19 08:40:34 2009 +0100
     1.3 @@ -2,7 +2,7 @@
     1.4   *
     1.5   * This file is a part of LEMON, a generic C++ optimization library.
     1.6   *
     1.7 - * Copyright (C) 2003-2008
     1.8 + * Copyright (C) 2003-2009
     1.9   * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    1.10   * (Egervary Research Group on Combinatorial Optimization, EGRES).
    1.11   *
    1.12 @@ -441,13 +441,13 @@
    1.13    // CplexLp members
    1.14  
    1.15    CplexLp::CplexLp()
    1.16 -    : LpBase(), CplexBase(), LpSolver() {}
    1.17 +    : LpBase(), LpSolver(), CplexBase() {}
    1.18  
    1.19    CplexLp::CplexLp(const CplexEnv& env)
    1.20 -    : LpBase(), CplexBase(env), LpSolver() {}
    1.21 +    : LpBase(), LpSolver(), CplexBase(env) {}
    1.22  
    1.23    CplexLp::CplexLp(const CplexLp& other)
    1.24 -    : LpBase(), CplexBase(other), LpSolver() {}
    1.25 +    : LpBase(), LpSolver(), CplexBase(other) {}
    1.26  
    1.27    CplexLp::~CplexLp() {}
    1.28  
    1.29 @@ -798,7 +798,7 @@
    1.30    // CplexMip members
    1.31  
    1.32    CplexMip::CplexMip()
    1.33 -    : LpBase(), CplexBase(), MipSolver() {
    1.34 +    : LpBase(), MipSolver(), CplexBase() {
    1.35  
    1.36  #if CPX_VERSION < 800
    1.37      CPXchgprobtype(cplexEnv(),  _prob, CPXPROB_MIP);
    1.38 @@ -808,7 +808,7 @@
    1.39    }
    1.40  
    1.41    CplexMip::CplexMip(const CplexEnv& env)
    1.42 -    : LpBase(), CplexBase(env), MipSolver() {
    1.43 +    : LpBase(), MipSolver(), CplexBase(env) {
    1.44  
    1.45  #if CPX_VERSION < 800
    1.46      CPXchgprobtype(cplexEnv(),  _prob, CPXPROB_MIP);
    1.47 @@ -819,7 +819,7 @@
    1.48    }
    1.49  
    1.50    CplexMip::CplexMip(const CplexMip& other)
    1.51 -    : LpBase(), CplexBase(other), MipSolver() {}
    1.52 +    : LpBase(), MipSolver(), CplexBase(other) {}
    1.53  
    1.54    CplexMip::~CplexMip() {}
    1.55