Changeset 1313:96b74270c3a1 in lemon-0.x for src/lemon/lp_skeleton.h
- Timestamp:
- 04/07/05 08:38:56 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1752
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
src/lemon/lp_skeleton.h
r1312 r1313 1 1 /* -*- C++ -*- 2 * src/lemon/lp_s olver_skeleton.h2 * src/lemon/lp_skeleton.h 3 3 * - Part of LEMON, a generic C++ optimization library 4 4 * … … 16 16 */ 17 17 18 #ifndef LEMON_LP_S OLVER_SKELETON19 #define LEMON_LP_S OLVER_SKELETON18 #ifndef LEMON_LP_SKELETON 19 #define LEMON_LP_SKELETON 20 20 21 21 #include"lp_base.h" … … 26 26 27 27 ///A skeleton class to implement LP solver interfaces 28 class LpS olverSkeleton :public LpSolverBase {28 class LpSkeleton :public LpSolverBase { 29 29 int col_num,row_num; 30 30 … … 108 108 109 109 public: 110 LpS olverSkeleton() : LpSolverBase(), col_num(0), row_num(0) {}110 LpSkeleton() : LpSolverBase(), col_num(0), row_num(0) {} 111 111 }; 112 112 113 113 } //namespace lemon 114 114 115 #endif // LEMON_LP_S OLVER_SKELETON115 #endif // LEMON_LP_SKELETON
Note: See TracChangeset
for help on using the changeset viewer.