1.1 --- a/src/lemon/lp_skeleton.cc Fri Apr 15 22:12:51 2005 +0000
1.2 +++ b/src/lemon/lp_skeleton.cc Sun Apr 17 18:57:22 2005 +0000
1.3 @@ -21,6 +21,16 @@
1.4 ///\brief A skeleton file to implement LP solver interfaces
1.5 namespace lemon {
1.6
1.7 + LpSolverBase &LpSkeleton::_newLp()
1.8 + {
1.9 + return *((LpSolverBase *)0);
1.10 + }
1.11 +
1.12 + LpSolverBase &LpSkeleton::_copyLp()
1.13 + {
1.14 + return *((LpSolverBase *)0);
1.15 + }
1.16 +
1.17 int LpSkeleton::_addCol()
1.18 {
1.19 return ++col_num;