Changeset 598:9d0d7e20f76d in lemon for lemon/glpk.cc
- Timestamp:
- 03/19/09 08:40:34 (14 years ago)
- Branch:
- default
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/glpk.cc
r589 r598 3 3 * This file is a part of LEMON, a generic C++ optimization library. 4 4 * 5 * Copyright (C) 2003-200 85 * Copyright (C) 2003-2009 6 6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport 7 7 * (Egervary Research Group on Combinatorial Optimization, EGRES). … … 532 532 533 533 GlpkLp::GlpkLp() 534 : LpBase(), GlpkBase(), LpSolver() {534 : LpBase(), LpSolver(), GlpkBase() { 535 535 messageLevel(MESSAGE_NO_OUTPUT); 536 536 } 537 537 538 538 GlpkLp::GlpkLp(const GlpkLp& other) 539 : LpBase(other), GlpkBase(other), LpSolver(other) {539 : LpBase(other), LpSolver(other), GlpkBase(other) { 540 540 messageLevel(MESSAGE_NO_OUTPUT); 541 541 } … … 831 831 832 832 GlpkMip::GlpkMip() 833 : LpBase(), GlpkBase(), MipSolver() {833 : LpBase(), MipSolver(), GlpkBase() { 834 834 messageLevel(MESSAGE_NO_OUTPUT); 835 835 } 836 836 837 837 GlpkMip::GlpkMip(const GlpkMip& other) 838 : LpBase(), GlpkBase(other), MipSolver() {838 : LpBase(), MipSolver(), GlpkBase(other) { 839 839 messageLevel(MESSAGE_NO_OUTPUT); 840 840 }
Note: See TracChangeset
for help on using the changeset viewer.