[Lemon-commits] [lemon_svn] alpar: r1843 - in hugo/trunk/src: lemon test
Lemon SVN
svn at lemon.cs.elte.hu
Mon Nov 6 20:48:09 CET 2006
Author: alpar
Date: Mon Apr 25 18:22:04 2005
New Revision: 1843
Modified:
hugo/trunk/src/lemon/lp_skeleton.cc
hugo/trunk/src/lemon/lp_skeleton.h
hugo/trunk/src/test/lp_test.cc
Log:
LpSkeleton updated
Modified: hugo/trunk/src/lemon/lp_skeleton.cc
==============================================================================
--- hugo/trunk/src/lemon/lp_skeleton.cc (original)
+++ hugo/trunk/src/lemon/lp_skeleton.cc Mon Apr 25 18:22:04 2005
@@ -73,7 +73,7 @@
{
}
- void _setRowBounds(int, Value, Value)
+ void LpSkeleton::_setRowBounds(int, Value, Value)
{
}
@@ -84,10 +84,15 @@
void LpSkeleton::_setMax()
{
}
+
void LpSkeleton::_setMin()
{
}
+ void LpSkeleton::_clearObj()
+ {
+ }
+
LpSkeleton::SolveExitStatus LpSkeleton::_solve()
{
return SOLVED;
Modified: hugo/trunk/src/lemon/lp_skeleton.h
==============================================================================
--- hugo/trunk/src/lemon/lp_skeleton.h (original)
+++ hugo/trunk/src/lemon/lp_skeleton.h Mon Apr 25 18:22:04 2005
@@ -84,6 +84,8 @@
virtual void _setRowUpperBound(int i, Value value);
/// \e
+ virtual void _clearObj();
+ /// \e
virtual void _setObjCoeff(int i, Value obj_coef);
///\e
Modified: hugo/trunk/src/test/lp_test.cc
==============================================================================
--- hugo/trunk/src/test/lp_test.cc (original)
+++ hugo/trunk/src/test/lp_test.cc Mon Apr 25 18:22:04 2005
@@ -1,3 +1,5 @@
+#include<lemon/lp_skeleton.h>
+
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
@@ -142,6 +144,9 @@
int main()
{
+ LpSkeleton lp_skel;
+ lpTest(lp_skel);
+
LpDefault lp;
lpTest(lp);
More information about the Lemon-commits
mailing list