Changeset 485:9b082b3fb33f in lemon for lemon/soplex.h
- Timestamp:
- 01/12/09 13:26:02 (16 years ago)
- Branch:
- default
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/soplex.h
r484 r485 44 44 /// Berlin (ZIB). You can find detailed information about it at the 45 45 /// <tt>http://soplex.zib.de</tt> address. 46 class LpSoplex: public LpSolver {46 class SoplexLp : public LpSolver { 47 47 private: 48 48 … … 69 69 70 70 /// \e 71 LpSoplex();71 SoplexLp(); 72 72 /// \e 73 LpSoplex(const LpSoplex&);73 SoplexLp(const SoplexLp&); 74 74 /// \e 75 ~ LpSoplex();75 ~SoplexLp(); 76 76 77 77 protected: 78 78 79 virtual LpSoplex* _newSolver() const;80 virtual LpSoplex* _cloneSolver() const;79 virtual SoplexLp* _newSolver() const; 80 virtual SoplexLp* _cloneSolver() const; 81 81 82 82 virtual const char* _solverName() const;
Note: See TracChangeset
for help on using the changeset viewer.