Changeset 1291:16cde3e1aa9f in lemon-0.x for src/work/athos
- Timestamp:
- 04/01/05 15:42:58 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@1724
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/work/athos/lp/lp_base.h
r1279 r1291 106 106 107 107 ///\e 108 enum SolutionXXXType { 109 ///\e 110 INFEASIBLE = 0, 111 ///\e 112 UNBOUNDED = 1, 113 ///\e 114 OPTIMAL = 2, 115 ///\e 116 FEASIBLE = 3 117 }; 118 119 ///\e 108 120 enum SolutionType { 109 121 ///\e 110 122 INFEASIBLE = 0, 111 123 ///\e 112 UN BOUNDED = 1,124 UNDEFINED = 1, 113 125 ///\e 114 126 OPTIMAL = 2, 115 127 ///\e 116 FEASIBLE = 3 ,128 FEASIBLE = 3 117 129 }; 118 130 … … 407 419 ///\bug Wrong interface 408 420 /// 409 virtual Solution Type _solve() = 0;421 virtual SolutionXXXType _solve() = 0; 410 422 411 423 ///\e … … 567 579 /// extended number of type Value, i.e. a finite number of type 568 580 /// Value or -\ref INF. 569 v irtual void setColLowerBound(Col c, Value value) {581 void setColLowerBound(Col c, Value value) { 570 582 _setColLowerBound(cols.floatingId(c.id),value); 571 583 } … … 575 587 /// extended number of type Value, i.e. a finite number of type 576 588 /// Value or \ref INF. 577 v irtual void setColUpperBound(Col c, Value value) {589 void setColUpperBound(Col c, Value value) { 578 590 _setColUpperBound(cols.floatingId(c.id),value); 579 591 }; … … 583 595 /// extended number of type Value, i.e. a finite number of type 584 596 /// Value or -\ref INF. 585 v irtual void setRowLowerBound(Row r, Value value) {597 void setRowLowerBound(Row r, Value value) { 586 598 _setRowLowerBound(rows.floatingId(r.id),value); 587 599 }; … … 591 603 /// extended number of type Value, i.e. a finite number of type 592 604 /// Value or \ref INF. 593 v irtual void setRowUpperBound(Row r, Value value) {605 void setRowUpperBound(Row r, Value value) { 594 606 _setRowUpperBound(rows.floatingId(r.id),value); 595 607 };
Note: See TracChangeset
for help on using the changeset viewer.