COIN-OR::LEMON - Graph Library

Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/glpk.cc

    r462 r542  
    523523  }
    524524
     525  void GlpkBase::freeEnv() {
     526    glp_free_env();
     527  }
     528
     529  GlpkBase::FreeEnvHelper GlpkBase::freeEnvHelper;
     530
    525531  // GlpkLp members
    526532
     
    535541  }
    536542
    537   GlpkLp* GlpkLp::_newSolver() const { return new GlpkLp; }
    538   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); }
    539545
    540546  const char* GlpkLp::_solverName() const { return "GlpkLp"; }
     
    941947  }
    942948
    943   GlpkMip* GlpkMip::_newSolver() const { return new GlpkMip; }
    944   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); }
    945951
    946952  const char* GlpkMip::_solverName() const { return "GlpkMip"; }
Note: See TracChangeset for help on using the changeset viewer.