# HG changeset patch # User athos # Date 1169468037 0 # Node ID c945f577a66d722946d184997a308bafcdb123fd # Parent 5ef61c97bf1bdf9d5e8b9883148a09622f994434 Small bug corrected. diff -r 5ef61c97bf1b -r c945f577a66d lemon/elevator.h --- a/lemon/elevator.h Mon Jan 22 10:22:14 2007 +0000 +++ b/lemon/elevator.h Mon Jan 22 12:13:57 2007 +0000 @@ -223,7 +223,7 @@ /// ///\return the level of the highest active item or -1 if there is no active ///item. - Item highestActiveLevel() const + int highestActiveLevel() const { return _highest_active; } diff -r 5ef61c97bf1b -r c945f577a66d lemon/lp_glpk.cc --- a/lemon/lp_glpk.cc Mon Jan 22 10:22:14 2007 +0000 +++ b/lemon/lp_glpk.cc Mon Jan 22 12:13:57 2007 +0000 @@ -119,6 +119,7 @@ void LpGlpk::_setColName(int col, const std::string & name) { lpx_set_col_name(lp,col,const_cast(name.c_str())); + } void LpGlpk::_setRowCoeffs(int i, LpRowIterator b, LpRowIterator e)