Changeset 589:fc6c7aab4b8d in lemon for lemon/glpk.cc
- Timestamp:
- 03/04/09 14:43:05 (14 years ago)
- Branch:
- default
- Parents:
- 588:89e29e22d479 (diff), 585:ba124394367a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Phase:
- public
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/glpk.cc
r585 r589 541 541 } 542 542 543 GlpkLp* GlpkLp:: _newSolver() const { return new GlpkLp; }544 GlpkLp* GlpkLp:: _cloneSolver() const { return new GlpkLp(*this); }543 GlpkLp* GlpkLp::newSolver() const { return new GlpkLp; } 544 GlpkLp* GlpkLp::cloneSolver() const { return new GlpkLp(*this); } 545 545 546 546 const char* GlpkLp::_solverName() const { return "GlpkLp"; } … … 947 947 } 948 948 949 GlpkMip* GlpkMip:: _newSolver() const { return new GlpkMip; }950 GlpkMip* GlpkMip:: _cloneSolver() const {return new GlpkMip(*this); }949 GlpkMip* GlpkMip::newSolver() const { return new GlpkMip; } 950 GlpkMip* GlpkMip::cloneSolver() const {return new GlpkMip(*this); } 951 951 952 952 const char* GlpkMip::_solverName() const { return "GlpkMip"; } -
lemon/glpk.cc
r587 r589 522 522 cols.clear(); 523 523 } 524 525 void GlpkBase::freeEnv() { 526 glp_free_env(); 527 } 528 529 GlpkBase::FreeEnvHelper GlpkBase::freeEnvHelper; 524 530 525 531 // GlpkLp members
Note: See TracChangeset
for help on using the changeset viewer.