lemon/circulation.h
branch1.1
changeset 1080 f22bc76370b2
parent 688 756a5ec551c8
child 736 86c49553fea5
child 1081 f1398882a928
child 1157 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,