diff -r 547e966b3b29 -r 9db62975c32b lemon/soplex.cc --- a/lemon/soplex.cc Thu Feb 26 09:39:02 2009 +0000 +++ b/lemon/soplex.cc Thu Feb 26 07:39:16 2009 +0000 @@ -54,12 +54,12 @@ _dual_values.clear(); } - SoplexLp* SoplexLp::_newSolver() const { + SoplexLp* SoplexLp::newSolver() const { SoplexLp* newlp = new SoplexLp(); return newlp; } - SoplexLp* SoplexLp::_cloneSolver() const { + SoplexLp* SoplexLp::cloneSolver() const { SoplexLp* newlp = new SoplexLp(*this); return newlp; }