lemon/circulation.h
changeset 891 5205145fabf6
parent 641 756a5ec551c8
child 689 86c49553fea5
child 963 761fe0846f49
equal deleted inserted replaced
11:e1b5e2985d89 12:453648836ef8
   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,