equal
deleted
inserted
replaced
99 p = const_bf_test.predMap(); |
99 p = const_bf_test.predMap(); |
100 pp = const_bf_test.path(t); |
100 pp = const_bf_test.path(t); |
101 pp = const_bf_test.negativeCycle(); |
101 pp = const_bf_test.negativeCycle(); |
102 |
102 |
103 for (BF::ActiveIt it(const_bf_test); it != INVALID; ++it) {} |
103 for (BF::ActiveIt it(const_bf_test); it != INVALID; ++it) {} |
|
104 for (auto n: const_bf_test.activeNodes()) { ::lemon::ignore_unused_variable_warning(n); } |
|
105 for (Digraph::Node n: const_bf_test.activeNodes()) { |
|
106 ::lemon::ignore_unused_variable_warning(n); |
|
107 } |
104 } |
108 } |
105 { |
109 { |
106 BF::SetPredMap<concepts::ReadWriteMap<Node,Arc> > |
110 BF::SetPredMap<concepts::ReadWriteMap<Node,Arc> > |
107 ::SetDistMap<concepts::ReadWriteMap<Node,Value> > |
111 ::SetDistMap<concepts::ReadWriteMap<Node,Value> > |
108 ::SetOperationTraits<BellmanFordDefaultOperationTraits<Value> > |
112 ::SetOperationTraits<BellmanFordDefaultOperationTraits<Value> > |