Changeset 598:9d0d7e20f76d in lemon for lemon/cplex.cc
- Timestamp:
- 03/19/09 08:40:34 (16 years ago)
- Branch:
- default
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/cplex.cc
r587 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). … … 442 442 443 443 CplexLp::CplexLp() 444 : LpBase(), CplexBase(), LpSolver() {}444 : LpBase(), LpSolver(), CplexBase() {} 445 445 446 446 CplexLp::CplexLp(const CplexEnv& env) 447 : LpBase(), CplexBase(env), LpSolver() {}447 : LpBase(), LpSolver(), CplexBase(env) {} 448 448 449 449 CplexLp::CplexLp(const CplexLp& other) 450 : LpBase(), CplexBase(other), LpSolver() {}450 : LpBase(), LpSolver(), CplexBase(other) {} 451 451 452 452 CplexLp::~CplexLp() {} … … 799 799 800 800 CplexMip::CplexMip() 801 : LpBase(), CplexBase(), MipSolver() {801 : LpBase(), MipSolver(), CplexBase() { 802 802 803 803 #if CPX_VERSION < 800 … … 809 809 810 810 CplexMip::CplexMip(const CplexEnv& env) 811 : LpBase(), CplexBase(env), MipSolver() {811 : LpBase(), MipSolver(), CplexBase(env) { 812 812 813 813 #if CPX_VERSION < 800 … … 820 820 821 821 CplexMip::CplexMip(const CplexMip& other) 822 : LpBase(), CplexBase(other), MipSolver() {}822 : LpBase(), MipSolver(), CplexBase(other) {} 823 823 824 824 CplexMip::~CplexMip() {}
Note: See TracChangeset
for help on using the changeset viewer.