Changeset 1303:9bcc455da4f5 in lemon-0.x for src/work/athos/lp/lp_base.h
- Timestamp:
- 04/05/05 08:41:21 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1738
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/work/athos/lp/lp_base.h
r1295 r1303 106 106 107 107 ///\e 108 enum Sol utionStatus {108 enum SolveExitStatus { 109 109 ///\e 110 110 SOLVED = 0, … … 114 114 115 115 ///\e 116 enum Solution Type{116 enum SolutionStatus { 117 117 ///Feasible solution has'n been found (but may exist). 118 118 … … 391 391 virtual void _setRowUpperBound(int i, Value value) = 0; 392 392 virtual void _setObjCoeff(int i, Value obj_coef) = 0; 393 virtual Sol utionStatus _solve() = 0;393 virtual SolveExitStatus _solve() = 0; 394 394 virtual Value _getPrimal(int i) = 0; 395 virtual Solution Type_getPrimalType() = 0;395 virtual SolutionStatus _getPrimalType() = 0; 396 396 397 397 … … 615 615 616 616 ///\e 617 Sol utionStatus solve() { return _solve(); }617 SolveExitStatus solve() { return _solve(); } 618 618 619 619 ///@} … … 624 624 625 625 ///\e 626 Solution TypeprimalType() {626 SolutionStatus primalType() { 627 627 return _getPrimalType(); 628 628 }
Note: See TracChangeset
for help on using the changeset viewer.