Changes in lemon/circulation.h [689:86c49553fea5:641:756a5ec551c8] in lemon-1.2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/circulation.h
r689 r641 451 451 } 452 452 453 /// \brief Sets the tolerance used by the algorithm. 454 /// 455 /// Sets the tolerance object used by the algorithm. 456 /// \return <tt>(*this)</tt> 457 Circulation& tolerance(const Tolerance& tolerance) { 453 /// \brief Sets the tolerance used by algorithm. 454 /// 455 /// Sets the tolerance used by algorithm. 456 Circulation& tolerance(const Tolerance& tolerance) const { 458 457 _tol = tolerance; 459 458 return *this; … … 462 461 /// \brief Returns a const reference to the tolerance. 463 462 /// 464 /// Returns a const reference to the tolerance object used by 465 /// the algorithm. 463 /// Returns a const reference to the tolerance. 466 464 const Tolerance& tolerance() const { 467 return _tol;465 return tolerance; 468 466 } 469 467
Note: See TracChangeset
for help on using the changeset viewer.