Changeset 485:9b082b3fb33f in lemon for lemon/clp.h
- Timestamp:
- 01/12/09 13:26:02 (14 years ago)
- Branch:
- default
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/clp.h
r484 r485 40 40 /// the IBM. The CLP is part of the COIN-OR package and it can be 41 41 /// used with Common Public License. 42 class LpClp : public LpSolver {42 class ClpLp : public LpSolver { 43 43 protected: 44 44 … … 51 51 52 52 /// \e 53 LpClp();53 ClpLp(); 54 54 /// \e 55 LpClp(const LpClp&);55 ClpLp(const ClpLp&); 56 56 /// \e 57 ~ LpClp();57 ~ClpLp(); 58 58 59 59 protected: … … 67 67 protected: 68 68 69 virtual LpClp* _newSolver() const;70 virtual LpClp* _cloneSolver() const;69 virtual ClpLp* _newSolver() const; 70 virtual ClpLp* _cloneSolver() const; 71 71 72 72 virtual const char* _solverName() const;
Note: See TracChangeset
for help on using the changeset viewer.