[Lemon-commits] athos: r3141 - hugo/trunk/lemon
Lemon SVN
svn at lemon.cs.elte.hu
Mon Jan 22 13:13:57 CET 2007
Author: athos
Date: Mon Jan 22 13:13:57 2007
New Revision: 3141
Modified:
hugo/trunk/lemon/elevator.h
hugo/trunk/lemon/lp_glpk.cc
Log:
Small bug corrected.
Modified: hugo/trunk/lemon/elevator.h
==============================================================================
--- hugo/trunk/lemon/elevator.h (original)
+++ hugo/trunk/lemon/elevator.h Mon Jan 22 13:13:57 2007
@@ -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;
}
Modified: hugo/trunk/lemon/lp_glpk.cc
==============================================================================
--- hugo/trunk/lemon/lp_glpk.cc (original)
+++ hugo/trunk/lemon/lp_glpk.cc Mon Jan 22 13:13:57 2007
@@ -119,6 +119,7 @@
void LpGlpk::_setColName(int col, const std::string & name)
{
lpx_set_col_name(lp,col,const_cast<char*>(name.c_str()));
+
}
void LpGlpk::_setRowCoeffs(int i, LpRowIterator b, LpRowIterator e)
More information about the Lemon-commits
mailing list