0
2
0
| ... | ... |
@@ -30,2 +30,3 @@ |
| 30 | 30 |
#include <lemon/maps.h> |
| 31 |
#include <lemon/tolerance.h> |
|
| 31 | 32 |
#include <lemon/path.h> |
| ... | ... |
@@ -36,3 +37,3 @@ |
| 36 | 37 |
|
| 37 |
/// \brief Default |
|
| 38 |
/// \brief Default operation traits for the BellmanFord algorithm class. |
|
| 38 | 39 |
/// |
| ... | ... |
@@ -43,2 +44,4 @@ |
| 43 | 44 |
/// value is used as extremal infinity value. |
| 45 |
/// |
|
| 46 |
/// \see BellmanFordToleranceOperationTraits |
|
| 44 | 47 |
template < |
| ... | ... |
@@ -47,3 +50,3 @@ |
| 47 | 50 |
struct BellmanFordDefaultOperationTraits {
|
| 48 |
/// \ |
|
| 51 |
/// \brief Value type for the algorithm. |
|
| 49 | 52 |
typedef V Value; |
| ... | ... |
@@ -86,2 +89,47 @@ |
| 86 | 89 |
|
| 90 |
/// \brief Operation traits for the BellmanFord algorithm class |
|
| 91 |
/// using tolerance. |
|
| 92 |
/// |
|
| 93 |
/// This operation traits class defines all computational operations |
|
| 94 |
/// and constants that are used in the Bellman-Ford algorithm. |
|
| 95 |
/// The only difference between this implementation and |
|
| 96 |
/// \ref BellmanFordDefaultOperationTraits is that this class uses |
|
| 97 |
/// the \ref Tolerance "tolerance technique" in its \ref less() |
|
| 98 |
/// function. |
|
| 99 |
/// |
|
| 100 |
/// \tparam V The value type. |
|
| 101 |
/// \tparam eps The epsilon value for the \ref less() function. |
|
| 102 |
/// By default, it is the epsilon value used by \ref Tolerance |
|
| 103 |
/// "Tolerance<V>". |
|
| 104 |
/// |
|
| 105 |
/// \see BellmanFordDefaultOperationTraits |
|
| 106 |
#ifdef DOXYGEN |
|
| 107 |
template <typename V, V eps> |
|
| 108 |
#else |
|
| 109 |
template < |
|
| 110 |
typename V, |
|
| 111 |
V eps = Tolerance<V>::def_epsilon> |
|
| 112 |
#endif |
|
| 113 |
struct BellmanFordToleranceOperationTraits {
|
|
| 114 |
/// \brief Value type for the algorithm. |
|
| 115 |
typedef V Value; |
|
| 116 |
/// \brief Gives back the zero value of the type. |
|
| 117 |
static Value zero() {
|
|
| 118 |
return static_cast<Value>(0); |
|
| 119 |
} |
|
| 120 |
/// \brief Gives back the positive infinity value of the type. |
|
| 121 |
static Value infinity() {
|
|
| 122 |
return std::numeric_limits<Value>::infinity(); |
|
| 123 |
} |
|
| 124 |
/// \brief Gives back the sum of the given two elements. |
|
| 125 |
static Value plus(const Value& left, const Value& right) {
|
|
| 126 |
return left + right; |
|
| 127 |
} |
|
| 128 |
/// \brief Gives back \c true only if the first value is less than |
|
| 129 |
/// the second. |
|
| 130 |
static bool less(const Value& left, const Value& right) {
|
|
| 131 |
return left + eps < right; |
|
| 132 |
} |
|
| 133 |
}; |
|
| 134 |
|
|
| 87 | 135 |
/// \brief Default traits class of BellmanFord class. |
| ... | ... |
@@ -109,3 +157,4 @@ |
| 109 | 157 |
/// given \c Value type. |
| 110 |
/// \see BellmanFordDefaultOperationTraits |
|
| 158 |
/// \see BellmanFordDefaultOperationTraits, |
|
| 159 |
/// BellmanFordToleranceOperationTraits |
|
| 111 | 160 |
typedef BellmanFordDefaultOperationTraits<Value> OperationTraits; |
| ... | ... |
@@ -839,3 +888,4 @@ |
| 839 | 888 |
/// given \c Value type. |
| 840 |
/// \see BellmanFordDefaultOperationTraits |
|
| 889 |
/// \see BellmanFordDefaultOperationTraits, |
|
| 890 |
/// BellmanFordToleranceOperationTraits |
|
| 841 | 891 |
typedef BellmanFordDefaultOperationTraits<Value> OperationTraits; |
0 comments (0 inline)