# HG changeset patch
# User Peter Kovacs <kpeter@inf.elte.hu>
# Date 1267520587 -3600
# Node ID 930ddeafdb209dd86cb111029bb344b18ac3b348
# Parent e77b621e6e7ecd5a325e1546bdfd51aa01c7b395
Add tolerance() functions for HaoOrlin (#306)
diff --git a/lemon/hao_orlin.h b/lemon/hao_orlin.h
|
a
|
b
|
|
| 165 | 165 | } |
| 166 | 166 | } |
| 167 | 167 | |
| | 168 | /// \brief Set the tolerance used by the algorithm. |
| | 169 | /// |
| | 170 | /// This function sets the tolerance object used by the algorithm. |
| | 171 | /// \return <tt>(*this)</tt> |
| | 172 | HaoOrlin& tolerance(const Tolerance& tolerance) { |
| | 173 | _tolerance = tolerance; |
| | 174 | return *this; |
| | 175 | } |
| | 176 | |
| | 177 | /// \brief Returns a const reference to the tolerance. |
| | 178 | /// |
| | 179 | /// This function returns a const reference to the tolerance object |
| | 180 | /// used by the algorithm. |
| | 181 | const Tolerance& tolerance() const { |
| | 182 | return _tolerance; |
| | 183 | } |
| | 184 | |
| 168 | 185 | private: |
| 169 | 186 | |
| 170 | 187 | void activate(const Node& i) { |