# HG changeset patch # User Alpar Juttner # Date 1267382309 -3600 # Node ID a5fc1e1e5039b38613c8153e2baefdbc2a5504f2 # Parent 81f7e910060b8e4d7957f36ac3fc14559a6df724# Parent a6eb9698c32140bab4addfd4caf11ff71eb1ca91 Merge diff -r 81f7e910060b -r a5fc1e1e5039 lemon/bellman_ford.h --- a/lemon/bellman_ford.h Sun Feb 28 19:23:01 2010 +0100 +++ b/lemon/bellman_ford.h Sun Feb 28 19:38:29 2010 +0100 @@ -28,24 +28,27 @@ #include #include #include +#include #include #include namespace lemon { - /// \brief Default OperationTraits for the BellmanFord algorithm class. + /// \brief Default operation traits for the BellmanFord algorithm class. /// /// This operation traits class defines all computational operations /// and constants that are used in the Bellman-Ford algorithm. /// The default implementation is based on the \c numeric_limits class. /// If the numeric type does not have infinity value, then the maximum /// value is used as extremal infinity value. + /// + /// \see BellmanFordToleranceOperationTraits template < typename V, bool has_inf = std::numeric_limits::has_infinity> struct BellmanFordDefaultOperationTraits { - /// \e + /// \brief Value type for the algorithm. typedef V Value; /// \brief Gives back the zero value of the type. static Value zero() { @@ -84,6 +87,51 @@ } }; + /// \brief Operation traits for the BellmanFord algorithm class + /// using tolerance. + /// + /// This operation traits class defines all computational operations + /// and constants that are used in the Bellman-Ford algorithm. + /// The only difference between this implementation and + /// \ref BellmanFordDefaultOperationTraits is that this class uses + /// the \ref Tolerance "tolerance technique" in its \ref less() + /// function. + /// + /// \tparam V The value type. + /// \tparam eps The epsilon value for the \ref less() function. + /// By default, it is the epsilon value used by \ref Tolerance + /// "Tolerance". + /// + /// \see BellmanFordDefaultOperationTraits +#ifdef DOXYGEN + template +#else + template < + typename V, + V eps = Tolerance::def_epsilon> +#endif + struct BellmanFordToleranceOperationTraits { + /// \brief Value type for the algorithm. + typedef V Value; + /// \brief Gives back the zero value of the type. + static Value zero() { + return static_cast(0); + } + /// \brief Gives back the positive infinity value of the type. + static Value infinity() { + return std::numeric_limits::infinity(); + } + /// \brief Gives back the sum of the given two elements. + static Value plus(const Value& left, const Value& right) { + return left + right; + } + /// \brief Gives back \c true only if the first value is less than + /// the second. + static bool less(const Value& left, const Value& right) { + return left + eps < right; + } + }; + /// \brief Default traits class of BellmanFord class. /// /// Default traits class of BellmanFord class. @@ -107,7 +155,8 @@ /// /// It defines the used operations and the infinity value for the /// given \c Value type. - /// \see BellmanFordDefaultOperationTraits + /// \see BellmanFordDefaultOperationTraits, + /// BellmanFordToleranceOperationTraits typedef BellmanFordDefaultOperationTraits OperationTraits; /// \brief The type of the map that stores the last arcs of the @@ -837,7 +886,8 @@ /// /// It defines the used operations and the infinity value for the /// given \c Value type. - /// \see BellmanFordDefaultOperationTraits + /// \see BellmanFordDefaultOperationTraits, + /// BellmanFordToleranceOperationTraits typedef BellmanFordDefaultOperationTraits OperationTraits; /// \brief The type of the map that stores the last diff -r 81f7e910060b -r a5fc1e1e5039 test/bellman_ford_test.cc --- a/test/bellman_ford_test.cc Sun Feb 28 19:23:01 2010 +0100 +++ b/test/bellman_ford_test.cc Sun Feb 28 19:38:29 2010 +0100 @@ -104,6 +104,7 @@ BF::SetPredMap > ::SetDistMap > ::SetOperationTraits > + ::SetOperationTraits > ::Create bf_test(gr,length); LengthMap length_map;