lemon/glpk.cc
changeset 598 9d0d7e20f76d
parent 589 fc6c7aab4b8d
child 612 7ab97e2a0c33
     1.1 --- a/lemon/glpk.cc	Wed Mar 18 16:18:05 2009 +0000
     1.2 +++ b/lemon/glpk.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 @@ -531,12 +531,12 @@
    1.13    // GlpkLp members
    1.14  
    1.15    GlpkLp::GlpkLp()
    1.16 -    : LpBase(), GlpkBase(), LpSolver() {
    1.17 +    : LpBase(), LpSolver(), GlpkBase() {
    1.18      messageLevel(MESSAGE_NO_OUTPUT);
    1.19    }
    1.20  
    1.21    GlpkLp::GlpkLp(const GlpkLp& other)
    1.22 -    : LpBase(other), GlpkBase(other), LpSolver(other) {
    1.23 +    : LpBase(other), LpSolver(other), GlpkBase(other) {
    1.24      messageLevel(MESSAGE_NO_OUTPUT);
    1.25    }
    1.26  
    1.27 @@ -830,12 +830,12 @@
    1.28    // GlpkMip members
    1.29  
    1.30    GlpkMip::GlpkMip()
    1.31 -    : LpBase(), GlpkBase(), MipSolver() {
    1.32 +    : LpBase(), MipSolver(), GlpkBase() {
    1.33      messageLevel(MESSAGE_NO_OUTPUT);
    1.34    }
    1.35  
    1.36    GlpkMip::GlpkMip(const GlpkMip& other)
    1.37 -    : LpBase(), GlpkBase(other), MipSolver() {
    1.38 +    : LpBase(), MipSolver(), GlpkBase(other) {
    1.39      messageLevel(MESSAGE_NO_OUTPUT);
    1.40    }
    1.41