COIN-OR::LEMON - Graph Library

Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/circulation.h

    r762 r760  
    458458    }
    459459
    460     /// \brief Sets the tolerance used by the algorithm.
    461     ///
    462     /// Sets the tolerance object used by the algorithm.
    463     /// \return <tt>(*this)</tt>
    464     Circulation& tolerance(const Tolerance& tolerance) {
     460    /// \brief Sets the tolerance used by algorithm.
     461    ///
     462    /// Sets the tolerance used by algorithm.
     463    Circulation& tolerance(const Tolerance& tolerance) const {
    465464      _tol = tolerance;
    466465      return *this;
     
    469468    /// \brief Returns a const reference to the tolerance.
    470469    ///
    471     /// Returns a const reference to the tolerance object used by
    472     /// the algorithm.
     470    /// Returns a const reference to the tolerance.
    473471    const Tolerance& tolerance() const {
    474       return _tol;
     472      return tolerance;
    475473    }
    476474
Note: See TracChangeset for help on using the changeset viewer.