equal
deleted
inserted
replaced
448 /// using this function. |
448 /// using this function. |
449 const Elevator& elevator() const { |
449 const Elevator& elevator() const { |
450 return *_level; |
450 return *_level; |
451 } |
451 } |
452 |
452 |
453 /// \brief Sets the tolerance used by algorithm. |
453 /// \brief Sets the tolerance used by the algorithm. |
454 /// |
454 /// |
455 /// Sets the tolerance used by algorithm. |
455 /// Sets the tolerance object used by the algorithm. |
|
456 /// \return <tt>(*this)</tt> |
456 Circulation& tolerance(const Tolerance& tolerance) { |
457 Circulation& tolerance(const Tolerance& tolerance) { |
457 _tol = tolerance; |
458 _tol = tolerance; |
458 return *this; |
459 return *this; |
459 } |
460 } |
460 |
461 |
461 /// \brief Returns a const reference to the tolerance. |
462 /// \brief Returns a const reference to the tolerance. |
462 /// |
463 /// |
463 /// Returns a const reference to the tolerance. |
464 /// Returns a const reference to the tolerance object used by |
|
465 /// the algorithm. |
464 const Tolerance& tolerance() const { |
466 const Tolerance& tolerance() const { |
465 return _tol; |
467 return _tol; |
466 } |
468 } |
467 |
469 |
468 /// \name Execution Control |
470 /// \name Execution Control |