COIN-OR::LEMON - Graph Library

Ignore:
Timestamp:
03/30/05 12:38:22 (19 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1703
Message:
  • Better (but still incomplete) doc
  • lp_test runs correctly
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/work/athos/lp/lp_solver_skeleton.h

    r1263 r1273  
    2727  ///A skeleton class to implement LP solver interfaces
    2828  class LpSolverSkeleton :public LpSolverBase {
    29 
     29    int col_num,row_num;
     30   
    3031  protected:
    3132    virtual int _addCol();
     
    4647    virtual SolutionType _solve();
    4748    virtual Value _getSolution(int i);
    48 
     49  public:
     50    LpSolverSkeleton() : LpSolverBase(), col_num(0), row_num(0) {}
    4951  }; 
    5052
Note: See TracChangeset for help on using the changeset viewer.