Changeset 735:1f08e846df29 in lemon
- Timestamp:
- 08/18/09 10:24:31 (15 years ago)
- Branch:
- default
- Children:
- 736:86c49553fea5, 795:4792459983d0, 852:31a389202e65
- Phase:
- public
- Location:
- lemon
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/circulation.h
r688 r735 454 454 /// 455 455 /// Sets the tolerance used by algorithm. 456 Circulation& tolerance(const Tolerance& tolerance) const{456 Circulation& tolerance(const Tolerance& tolerance) { 457 457 _tol = tolerance; 458 458 return *this; … … 463 463 /// Returns a const reference to the tolerance. 464 464 const Tolerance& tolerance() const { 465 return tolerance;465 return _tol; 466 466 } 467 467 -
lemon/preflow.h
r688 r735 375 375 /// 376 376 /// Sets the tolerance used by algorithm. 377 Preflow& tolerance(const Tolerance& tolerance) const{377 Preflow& tolerance(const Tolerance& tolerance) { 378 378 _tolerance = tolerance; 379 379 return *this; … … 384 384 /// Returns a const reference to the tolerance. 385 385 const Tolerance& tolerance() const { 386 return tolerance;386 return _tolerance; 387 387 } 388 388
Note: See TracChangeset
for help on using the changeset viewer.