equal
deleted
inserted
replaced
451 } |
451 } |
452 |
452 |
453 /// \brief Sets the tolerance used by algorithm. |
453 /// \brief Sets the tolerance used by algorithm. |
454 /// |
454 /// |
455 /// Sets the tolerance used by algorithm. |
455 /// Sets the tolerance used by algorithm. |
456 Circulation& tolerance(const Tolerance& tolerance) const { |
456 Circulation& tolerance(const Tolerance& tolerance) { |
457 _tol = tolerance; |
457 _tol = tolerance; |
458 return *this; |
458 return *this; |
459 } |
459 } |
460 |
460 |
461 /// \brief Returns a const reference to the tolerance. |
461 /// \brief Returns a const reference to the tolerance. |
462 /// |
462 /// |
463 /// Returns a const reference to the tolerance. |
463 /// Returns a const reference to the tolerance. |
464 const Tolerance& tolerance() const { |
464 const Tolerance& tolerance() const { |
465 return tolerance; |
465 return _tol; |
466 } |
466 } |
467 |
467 |
468 /// \name Execution Control |
468 /// \name Execution Control |
469 /// The simplest way to execute the algorithm is to call \ref run().\n |
469 /// The simplest way to execute the algorithm is to call \ref run().\n |
470 /// If you need more control on the initial solution or the execution, |
470 /// If you need more control on the initial solution or the execution, |