... |
... |
@@ -38,19 +38,24 @@
|
38 |
38 |
|
39 |
|
template<typename _Digraph>
|
|
39 |
#ifdef _MSC_VER
|
|
40 |
#define LEMON_SCOPE_FIX(OUTER, NESTED) OUTER::NESTED
|
|
41 |
#else
|
|
42 |
#define LEMON_SCOPE_FIX(OUTER, NESTED) typename OUTER::template NESTED
|
|
43 |
#endif
|
|
44 |
|
|
45 |
template<typename DGR>
|
40 |
46 |
class DigraphAdaptorBase {
|
41 |
47 |
public:
|
42 |
|
typedef _Digraph Digraph;
|
|
48 |
typedef DGR Digraph;
|
43 |
49 |
typedef DigraphAdaptorBase Adaptor;
|
44 |
|
typedef Digraph ParentDigraph;
|
45 |
50 |
|
46 |
51 |
protected:
|
47 |
|
Digraph* _digraph;
|
|
52 |
DGR* _digraph;
|
48 |
53 |
DigraphAdaptorBase() : _digraph(0) { }
|
49 |
|
void setDigraph(Digraph& digraph) { _digraph = &digraph; }
|
|
54 |
void initialize(DGR& digraph) { _digraph = &digraph; }
|
50 |
55 |
|
51 |
56 |
public:
|
52 |
|
DigraphAdaptorBase(Digraph& digraph) : _digraph(&digraph) { }
|
53 |
|
|
54 |
|
typedef typename Digraph::Node Node;
|
55 |
|
typedef typename Digraph::Arc Arc;
|
|
57 |
DigraphAdaptorBase(DGR& digraph) : _digraph(&digraph) { }
|
|
58 |
|
|
59 |
typedef typename DGR::Node Node;
|
|
60 |
typedef typename DGR::Arc Arc;
|
56 |
61 |
|
... |
... |
@@ -69,9 +74,9 @@
|
69 |
74 |
|
70 |
|
typedef NodeNumTagIndicator<Digraph> NodeNumTag;
|
|
75 |
typedef NodeNumTagIndicator<DGR> NodeNumTag;
|
71 |
76 |
int nodeNum() const { return _digraph->nodeNum(); }
|
72 |
77 |
|
73 |
|
typedef ArcNumTagIndicator<Digraph> ArcNumTag;
|
|
78 |
typedef ArcNumTagIndicator<DGR> ArcNumTag;
|
74 |
79 |
int arcNum() const { return _digraph->arcNum(); }
|
75 |
80 |
|
76 |
|
typedef FindArcTagIndicator<Digraph> FindArcTag;
|
|
81 |
typedef FindArcTagIndicator<DGR> FindArcTag;
|
77 |
82 |
Arc findArc(const Node& u, const Node& v, const Arc& prev = INVALID) const {
|
... |
... |
@@ -97,13 +102,13 @@
|
97 |
102 |
|
98 |
|
typedef typename ItemSetTraits<Digraph, Node>::ItemNotifier NodeNotifier;
|
|
103 |
typedef typename ItemSetTraits<DGR, Node>::ItemNotifier NodeNotifier;
|
99 |
104 |
NodeNotifier& notifier(Node) const { return _digraph->notifier(Node()); }
|
100 |
105 |
|
101 |
|
typedef typename ItemSetTraits<Digraph, Arc>::ItemNotifier ArcNotifier;
|
|
106 |
typedef typename ItemSetTraits<DGR, Arc>::ItemNotifier ArcNotifier;
|
102 |
107 |
ArcNotifier& notifier(Arc) const { return _digraph->notifier(Arc()); }
|
103 |
108 |
|
104 |
|
template <typename _Value>
|
105 |
|
class NodeMap : public Digraph::template NodeMap<_Value> {
|
|
109 |
template <typename V>
|
|
110 |
class NodeMap : public DGR::template NodeMap<V> {
|
106 |
111 |
public:
|
107 |
112 |
|
108 |
|
typedef typename Digraph::template NodeMap<_Value> Parent;
|
|
113 |
typedef typename DGR::template NodeMap<V> Parent;
|
109 |
114 |
|
... |
... |
@@ -112,3 +117,3 @@
|
112 |
117 |
|
113 |
|
NodeMap(const Adaptor& adaptor, const _Value& value)
|
|
118 |
NodeMap(const Adaptor& adaptor, const V& value)
|
114 |
119 |
: Parent(*adaptor._digraph, value) { }
|
... |
... |
@@ -128,12 +133,12 @@
|
128 |
133 |
|
129 |
|
template <typename _Value>
|
130 |
|
class ArcMap : public Digraph::template ArcMap<_Value> {
|
|
134 |
template <typename V>
|
|
135 |
class ArcMap : public DGR::template ArcMap<V> {
|
131 |
136 |
public:
|
132 |
137 |
|
133 |
|
typedef typename Digraph::template ArcMap<_Value> Parent;
|
134 |
|
|
135 |
|
explicit ArcMap(const Adaptor& adaptor)
|
|
138 |
typedef typename DGR::template ArcMap<V> Parent;
|
|
139 |
|
|
140 |
explicit ArcMap(const DigraphAdaptorBase<DGR>& adaptor)
|
136 |
141 |
: Parent(*adaptor._digraph) {}
|
137 |
142 |
|
138 |
|
ArcMap(const Adaptor& adaptor, const _Value& value)
|
|
143 |
ArcMap(const DigraphAdaptorBase<DGR>& adaptor, const V& value)
|
139 |
144 |
: Parent(*adaptor._digraph, value) {}
|
... |
... |
@@ -155,10 +160,9 @@
|
155 |
160 |
|
156 |
|
template<typename _Graph>
|
|
161 |
template<typename GR>
|
157 |
162 |
class GraphAdaptorBase {
|
158 |
163 |
public:
|
159 |
|
typedef _Graph Graph;
|
160 |
|
typedef Graph ParentGraph;
|
|
164 |
typedef GR Graph;
|
161 |
165 |
|
162 |
166 |
protected:
|
163 |
|
Graph* _graph;
|
|
167 |
GR* _graph;
|
164 |
168 |
|
... |
... |
@@ -166,10 +170,10 @@
|
166 |
170 |
|
167 |
|
void setGraph(Graph& graph) { _graph = &graph; }
|
|
171 |
void initialize(GR& graph) { _graph = &graph; }
|
168 |
172 |
|
169 |
173 |
public:
|
170 |
|
GraphAdaptorBase(Graph& graph) : _graph(&graph) {}
|
171 |
|
|
172 |
|
typedef typename Graph::Node Node;
|
173 |
|
typedef typename Graph::Arc Arc;
|
174 |
|
typedef typename Graph::Edge Edge;
|
|
174 |
GraphAdaptorBase(GR& graph) : _graph(&graph) {}
|
|
175 |
|
|
176 |
typedef typename GR::Node Node;
|
|
177 |
typedef typename GR::Arc Arc;
|
|
178 |
typedef typename GR::Edge Edge;
|
175 |
179 |
|
... |
... |
@@ -241,18 +245,18 @@
|
241 |
245 |
|
242 |
|
typedef typename ItemSetTraits<Graph, Node>::ItemNotifier NodeNotifier;
|
|
246 |
typedef typename ItemSetTraits<GR, Node>::ItemNotifier NodeNotifier;
|
243 |
247 |
NodeNotifier& notifier(Node) const { return _graph->notifier(Node()); }
|
244 |
248 |
|
245 |
|
typedef typename ItemSetTraits<Graph, Arc>::ItemNotifier ArcNotifier;
|
|
249 |
typedef typename ItemSetTraits<GR, Arc>::ItemNotifier ArcNotifier;
|
246 |
250 |
ArcNotifier& notifier(Arc) const { return _graph->notifier(Arc()); }
|
247 |
251 |
|
248 |
|
typedef typename ItemSetTraits<Graph, Edge>::ItemNotifier EdgeNotifier;
|
|
252 |
typedef typename ItemSetTraits<GR, Edge>::ItemNotifier EdgeNotifier;
|
249 |
253 |
EdgeNotifier& notifier(Edge) const { return _graph->notifier(Edge()); }
|
250 |
254 |
|
251 |
|
template <typename _Value>
|
252 |
|
class NodeMap : public Graph::template NodeMap<_Value> {
|
|
255 |
template <typename V>
|
|
256 |
class NodeMap : public GR::template NodeMap<V> {
|
253 |
257 |
public:
|
254 |
|
typedef typename Graph::template NodeMap<_Value> Parent;
|
255 |
|
explicit NodeMap(const GraphAdaptorBase<Graph>& adapter)
|
|
258 |
typedef typename GR::template NodeMap<V> Parent;
|
|
259 |
explicit NodeMap(const GraphAdaptorBase<GR>& adapter)
|
256 |
260 |
: Parent(*adapter._graph) {}
|
257 |
|
NodeMap(const GraphAdaptorBase<Graph>& adapter, const _Value& value)
|
|
261 |
NodeMap(const GraphAdaptorBase<GR>& adapter, const V& value)
|
258 |
262 |
: Parent(*adapter._graph, value) {}
|
... |
... |
@@ -272,9 +276,9 @@
|
272 |
276 |
|
273 |
|
template <typename _Value>
|
274 |
|
class ArcMap : public Graph::template ArcMap<_Value> {
|
|
277 |
template <typename V>
|
|
278 |
class ArcMap : public GR::template ArcMap<V> {
|
275 |
279 |
public:
|
276 |
|
typedef typename Graph::template ArcMap<_Value> Parent;
|
277 |
|
explicit ArcMap(const GraphAdaptorBase<Graph>& adapter)
|
|
280 |
typedef typename GR::template ArcMap<V> Parent;
|
|
281 |
explicit ArcMap(const GraphAdaptorBase<GR>& adapter)
|
278 |
282 |
: Parent(*adapter._graph) {}
|
279 |
|
ArcMap(const GraphAdaptorBase<Graph>& adapter, const _Value& value)
|
|
283 |
ArcMap(const GraphAdaptorBase<GR>& adapter, const V& value)
|
280 |
284 |
: Parent(*adapter._graph, value) {}
|
... |
... |
@@ -293,9 +297,9 @@
|
293 |
297 |
|
294 |
|
template <typename _Value>
|
295 |
|
class EdgeMap : public Graph::template EdgeMap<_Value> {
|
|
298 |
template <typename V>
|
|
299 |
class EdgeMap : public GR::template EdgeMap<V> {
|
296 |
300 |
public:
|
297 |
|
typedef typename Graph::template EdgeMap<_Value> Parent;
|
298 |
|
explicit EdgeMap(const GraphAdaptorBase<Graph>& adapter)
|
|
301 |
typedef typename GR::template EdgeMap<V> Parent;
|
|
302 |
explicit EdgeMap(const GraphAdaptorBase<GR>& adapter)
|
299 |
303 |
: Parent(*adapter._graph) {}
|
300 |
|
EdgeMap(const GraphAdaptorBase<Graph>& adapter, const _Value& value)
|
|
304 |
EdgeMap(const GraphAdaptorBase<GR>& adapter, const V& value)
|
301 |
305 |
: Parent(*adapter._graph, value) {}
|
... |
... |
@@ -316,7 +320,7 @@
|
316 |
320 |
|
317 |
|
template <typename _Digraph>
|
318 |
|
class ReverseDigraphBase : public DigraphAdaptorBase<_Digraph> {
|
|
321 |
template <typename DGR>
|
|
322 |
class ReverseDigraphBase : public DigraphAdaptorBase<DGR> {
|
319 |
323 |
public:
|
320 |
|
typedef _Digraph Digraph;
|
321 |
|
typedef DigraphAdaptorBase<_Digraph> Parent;
|
|
324 |
typedef DGR Digraph;
|
|
325 |
typedef DigraphAdaptorBase<DGR> Parent;
|
322 |
326 |
protected:
|
... |
... |
@@ -338,3 +342,3 @@
|
338 |
342 |
|
339 |
|
typedef FindArcTagIndicator<Digraph> FindArcTag;
|
|
343 |
typedef FindArcTagIndicator<DGR> FindArcTag;
|
340 |
344 |
Arc findArc(const Node& u, const Node& v,
|
... |
... |
@@ -358,3 +362,3 @@
|
358 |
362 |
///
|
359 |
|
/// \tparam GR The type of the adapted digraph.
|
|
363 |
/// \tparam DGR The type of the adapted digraph.
|
360 |
364 |
/// It must conform to the \ref concepts::Digraph "Digraph" concept.
|
... |
... |
@@ -364,3 +368,3 @@
|
364 |
368 |
/// digraph are convertible to each other.
|
365 |
|
template<typename GR>
|
|
369 |
template<typename DGR>
|
366 |
370 |
#ifdef DOXYGEN
|
... |
... |
@@ -369,3 +373,3 @@
|
369 |
373 |
class ReverseDigraph :
|
370 |
|
public DigraphAdaptorExtender<ReverseDigraphBase<GR> > {
|
|
374 |
public DigraphAdaptorExtender<ReverseDigraphBase<DGR> > {
|
371 |
375 |
#endif
|
... |
... |
@@ -373,4 +377,4 @@
|
373 |
377 |
/// The type of the adapted digraph.
|
374 |
|
typedef GR Digraph;
|
375 |
|
typedef DigraphAdaptorExtender<ReverseDigraphBase<GR> > Parent;
|
|
378 |
typedef DGR Digraph;
|
|
379 |
typedef DigraphAdaptorExtender<ReverseDigraphBase<DGR> > Parent;
|
376 |
380 |
protected:
|
... |
... |
@@ -382,4 +386,4 @@
|
382 |
386 |
/// Creates a reverse digraph adaptor for the given digraph.
|
383 |
|
explicit ReverseDigraph(Digraph& digraph) {
|
384 |
|
Parent::setDigraph(digraph);
|
|
387 |
explicit ReverseDigraph(DGR& digraph) {
|
|
388 |
Parent::initialize(digraph);
|
385 |
389 |
}
|
... |
... |
@@ -392,5 +396,5 @@
|
392 |
396 |
/// \relates ReverseDigraph
|
393 |
|
template<typename GR>
|
394 |
|
ReverseDigraph<const GR> reverseDigraph(const GR& digraph) {
|
395 |
|
return ReverseDigraph<const GR>(digraph);
|
|
397 |
template<typename DGR>
|
|
398 |
ReverseDigraph<const DGR> reverseDigraph(const DGR& digraph) {
|
|
399 |
return ReverseDigraph<const DGR>(digraph);
|
396 |
400 |
}
|
... |
... |
@@ -398,15 +402,14 @@
|
398 |
402 |
|
399 |
|
template <typename _Digraph, typename _NodeFilterMap,
|
400 |
|
typename _ArcFilterMap, bool _checked = true>
|
401 |
|
class SubDigraphBase : public DigraphAdaptorBase<_Digraph> {
|
|
403 |
template <typename DGR, typename NF, typename AF, bool ch = true>
|
|
404 |
class SubDigraphBase : public DigraphAdaptorBase<DGR> {
|
402 |
405 |
public:
|
403 |
|
typedef _Digraph Digraph;
|
404 |
|
typedef _NodeFilterMap NodeFilterMap;
|
405 |
|
typedef _ArcFilterMap ArcFilterMap;
|
|
406 |
typedef DGR Digraph;
|
|
407 |
typedef NF NodeFilterMap;
|
|
408 |
typedef AF ArcFilterMap;
|
406 |
409 |
|
407 |
410 |
typedef SubDigraphBase Adaptor;
|
408 |
|
typedef DigraphAdaptorBase<_Digraph> Parent;
|
|
411 |
typedef DigraphAdaptorBase<DGR> Parent;
|
409 |
412 |
protected:
|
410 |
|
NodeFilterMap* _node_filter;
|
411 |
|
ArcFilterMap* _arc_filter;
|
|
413 |
NF* _node_filter;
|
|
414 |
AF* _arc_filter;
|
412 |
415 |
SubDigraphBase()
|
... |
... |
@@ -414,7 +417,6 @@
|
414 |
417 |
|
415 |
|
void setNodeFilterMap(NodeFilterMap& node_filter) {
|
|
418 |
void initialize(DGR& digraph, NF& node_filter, AF& arc_filter) {
|
|
419 |
Parent::initialize(digraph);
|
416 |
420 |
_node_filter = &node_filter;
|
417 |
|
}
|
418 |
|
void setArcFilterMap(ArcFilterMap& arc_filter) {
|
419 |
|
_arc_filter = &arc_filter;
|
|
421 |
_arc_filter = &arc_filter;
|
420 |
422 |
}
|
... |
... |
@@ -489,3 +491,3 @@
|
489 |
491 |
|
490 |
|
typedef FindArcTagIndicator<Digraph> FindArcTag;
|
|
492 |
typedef FindArcTagIndicator<DGR> FindArcTag;
|
491 |
493 |
Arc findArc(const Node& source, const Node& target,
|
... |
... |
@@ -502,14 +504,17 @@
|
502 |
504 |
|
503 |
|
template <typename _Value>
|
504 |
|
class NodeMap : public SubMapExtender<Adaptor,
|
505 |
|
typename Parent::template NodeMap<_Value> > {
|
|
505 |
public:
|
|
506 |
|
|
507 |
template <typename V>
|
|
508 |
class NodeMap
|
|
509 |
: public SubMapExtender<SubDigraphBase<DGR, NF, AF, ch>,
|
|
510 |
LEMON_SCOPE_FIX(DigraphAdaptorBase<DGR>, NodeMap<V>)> {
|
506 |
511 |
public:
|
507 |
|
typedef _Value Value;
|
508 |
|
typedef SubMapExtender<Adaptor, typename Parent::
|
509 |
|
template NodeMap<Value> > MapParent;
|
510 |
|
|
511 |
|
NodeMap(const Adaptor& adaptor)
|
512 |
|
: MapParent(adaptor) {}
|
513 |
|
NodeMap(const Adaptor& adaptor, const Value& value)
|
514 |
|
: MapParent(adaptor, value) {}
|
|
512 |
typedef V Value;
|
|
513 |
typedef SubMapExtender<SubDigraphBase<DGR, NF, AF, ch>,
|
|
514 |
LEMON_SCOPE_FIX(DigraphAdaptorBase<DGR>, NodeMap<V>)> Parent;
|
|
515 |
|
|
516 |
NodeMap(const SubDigraphBase<DGR, NF, AF, ch>& adaptor)
|
|
517 |
: Parent(adaptor) {}
|
|
518 |
NodeMap(const SubDigraphBase<DGR, NF, AF, ch>& adaptor, const V& value)
|
|
519 |
: Parent(adaptor, value) {}
|
515 |
520 |
|
... |
... |
@@ -522,3 +527,3 @@
|
522 |
527 |
NodeMap& operator=(const CMap& cmap) {
|
523 |
|
MapParent::operator=(cmap);
|
|
528 |
Parent::operator=(cmap);
|
524 |
529 |
return *this;
|
... |
... |
@@ -527,14 +532,15 @@
|
527 |
532 |
|
528 |
|
template <typename _Value>
|
529 |
|
class ArcMap : public SubMapExtender<Adaptor,
|
530 |
|
typename Parent::template ArcMap<_Value> > {
|
|
533 |
template <typename V>
|
|
534 |
class ArcMap
|
|
535 |
: public SubMapExtender<SubDigraphBase<DGR, NF, AF, ch>,
|
|
536 |
LEMON_SCOPE_FIX(DigraphAdaptorBase<DGR>, ArcMap<V>)> {
|
531 |
537 |
public:
|
532 |
|
typedef _Value Value;
|
533 |
|
typedef SubMapExtender<Adaptor, typename Parent::
|
534 |
|
template ArcMap<Value> > MapParent;
|
535 |
|
|
536 |
|
ArcMap(const Adaptor& adaptor)
|
537 |
|
: MapParent(adaptor) {}
|
538 |
|
ArcMap(const Adaptor& adaptor, const Value& value)
|
539 |
|
: MapParent(adaptor, value) {}
|
|
538 |
typedef V Value;
|
|
539 |
typedef SubMapExtender<SubDigraphBase<DGR, NF, AF, ch>,
|
|
540 |
LEMON_SCOPE_FIX(DigraphAdaptorBase<DGR>, ArcMap<V>)> Parent;
|
|
541 |
|
|
542 |
ArcMap(const SubDigraphBase<DGR, NF, AF, ch>& adaptor)
|
|
543 |
: Parent(adaptor) {}
|
|
544 |
ArcMap(const SubDigraphBase<DGR, NF, AF, ch>& adaptor, const V& value)
|
|
545 |
: Parent(adaptor, value) {}
|
540 |
546 |
|
... |
... |
@@ -547,3 +553,3 @@
|
547 |
553 |
ArcMap& operator=(const CMap& cmap) {
|
548 |
|
MapParent::operator=(cmap);
|
|
554 |
Parent::operator=(cmap);
|
549 |
555 |
return *this;
|
... |
... |
@@ -554,9 +560,9 @@
|
554 |
560 |
|
555 |
|
template <typename _Digraph, typename _NodeFilterMap, typename _ArcFilterMap>
|
556 |
|
class SubDigraphBase<_Digraph, _NodeFilterMap, _ArcFilterMap, false>
|
557 |
|
: public DigraphAdaptorBase<_Digraph> {
|
|
561 |
template <typename DGR, typename NF, typename AF>
|
|
562 |
class SubDigraphBase<DGR, NF, AF, false>
|
|
563 |
: public DigraphAdaptorBase<DGR> {
|
558 |
564 |
public:
|
559 |
|
typedef _Digraph Digraph;
|
560 |
|
typedef _NodeFilterMap NodeFilterMap;
|
561 |
|
typedef _ArcFilterMap ArcFilterMap;
|
|
565 |
typedef DGR Digraph;
|
|
566 |
typedef NF NodeFilterMap;
|
|
567 |
typedef AF ArcFilterMap;
|
562 |
568 |
|
... |
... |
@@ -565,4 +571,4 @@
|
565 |
571 |
protected:
|
566 |
|
NodeFilterMap* _node_filter;
|
567 |
|
ArcFilterMap* _arc_filter;
|
|
572 |
NF* _node_filter;
|
|
573 |
AF* _arc_filter;
|
568 |
574 |
SubDigraphBase()
|
... |
... |
@@ -570,7 +576,6 @@
|
570 |
576 |
|
571 |
|
void setNodeFilterMap(NodeFilterMap& node_filter) {
|
|
577 |
void initialize(DGR& digraph, NF& node_filter, AF& arc_filter) {
|
|
578 |
Parent::initialize(digraph);
|
572 |
579 |
_node_filter = &node_filter;
|
573 |
|
}
|
574 |
|
void setArcFilterMap(ArcFilterMap& arc_filter) {
|
575 |
|
_arc_filter = &arc_filter;
|
|
580 |
_arc_filter = &arc_filter;
|
576 |
581 |
}
|
... |
... |
@@ -629,3 +634,3 @@
|
629 |
634 |
|
630 |
|
typedef FindArcTagIndicator<Digraph> FindArcTag;
|
|
635 |
typedef FindArcTagIndicator<DGR> FindArcTag;
|
631 |
636 |
Arc findArc(const Node& source, const Node& target,
|
... |
... |
@@ -642,14 +647,15 @@
|
642 |
647 |
|
643 |
|
template <typename _Value>
|
644 |
|
class NodeMap : public SubMapExtender<Adaptor,
|
645 |
|
typename Parent::template NodeMap<_Value> > {
|
|
648 |
template <typename V>
|
|
649 |
class NodeMap
|
|
650 |
: public SubMapExtender<SubDigraphBase<DGR, NF, AF, false>,
|
|
651 |
LEMON_SCOPE_FIX(DigraphAdaptorBase<DGR>, NodeMap<V>)> {
|
646 |
652 |
public:
|
647 |
|
typedef _Value Value;
|
648 |
|
typedef SubMapExtender<Adaptor, typename Parent::
|
649 |
|
template NodeMap<Value> > MapParent;
|
650 |
|
|
651 |
|
NodeMap(const Adaptor& adaptor)
|
652 |
|
: MapParent(adaptor) {}
|
653 |
|
NodeMap(const Adaptor& adaptor, const Value& value)
|
654 |
|
: MapParent(adaptor, value) {}
|
|
653 |
typedef V Value;
|
|
654 |
typedef SubMapExtender<SubDigraphBase<DGR, NF, AF, false>,
|
|
655 |
LEMON_SCOPE_FIX(DigraphAdaptorBase<DGR>, NodeMap<V>)> Parent;
|
|
656 |
|
|
657 |
NodeMap(const SubDigraphBase<DGR, NF, AF, false>& adaptor)
|
|
658 |
: Parent(adaptor) {}
|
|
659 |
NodeMap(const SubDigraphBase<DGR, NF, AF, false>& adaptor, const V& value)
|
|
660 |
: Parent(adaptor, value) {}
|
655 |
661 |
|
... |
... |
@@ -662,3 +668,3 @@
|
662 |
668 |
NodeMap& operator=(const CMap& cmap) {
|
663 |
|
MapParent::operator=(cmap);
|
|
669 |
Parent::operator=(cmap);
|
664 |
670 |
return *this;
|
... |
... |
@@ -667,14 +673,15 @@
|
667 |
673 |
|
668 |
|
template <typename _Value>
|
669 |
|
class ArcMap : public SubMapExtender<Adaptor,
|
670 |
|
typename Parent::template ArcMap<_Value> > {
|
|
674 |
template <typename V>
|
|
675 |
class ArcMap
|
|
676 |
: public SubMapExtender<SubDigraphBase<DGR, NF, AF, false>,
|
|
677 |
LEMON_SCOPE_FIX(DigraphAdaptorBase<DGR>, ArcMap<V>)> {
|
671 |
678 |
public:
|
672 |
|
typedef _Value Value;
|
673 |
|
typedef SubMapExtender<Adaptor, typename Parent::
|
674 |
|
template ArcMap<Value> > MapParent;
|
675 |
|
|
676 |
|
ArcMap(const Adaptor& adaptor)
|
677 |
|
: MapParent(adaptor) {}
|
678 |
|
ArcMap(const Adaptor& adaptor, const Value& value)
|
679 |
|
: MapParent(adaptor, value) {}
|
|
679 |
typedef V Value;
|
|
680 |
typedef SubMapExtender<SubDigraphBase<DGR, NF, AF, false>,
|
|
681 |
LEMON_SCOPE_FIX(DigraphAdaptorBase<DGR>, ArcMap<V>)> Parent;
|
|
682 |
|
|
683 |
ArcMap(const SubDigraphBase<DGR, NF, AF, false>& adaptor)
|
|
684 |
: Parent(adaptor) {}
|
|
685 |
ArcMap(const SubDigraphBase<DGR, NF, AF, false>& adaptor, const V& value)
|
|
686 |
: Parent(adaptor, value) {}
|
680 |
687 |
|
... |
... |
@@ -687,3 +694,3 @@
|
687 |
694 |
ArcMap& operator=(const CMap& cmap) {
|
688 |
|
MapParent::operator=(cmap);
|
|
695 |
Parent::operator=(cmap);
|
689 |
696 |
return *this;
|
... |
... |
@@ -710,3 +717,3 @@
|
710 |
717 |
///
|
711 |
|
/// \tparam GR The type of the adapted digraph.
|
|
718 |
/// \tparam DGR The type of the adapted digraph.
|
712 |
719 |
/// It must conform to the \ref concepts::Digraph "Digraph" concept.
|
... |
... |
@@ -716,3 +723,3 @@
|
716 |
723 |
/// adapted digraph. The default type is
|
717 |
|
/// \ref concepts::Digraph::NodeMap "GR::NodeMap<bool>".
|
|
724 |
/// \ref concepts::Digraph::NodeMap "DGR::NodeMap<bool>".
|
718 |
725 |
/// \tparam AF The type of the arc filter map.
|
... |
... |
@@ -720,3 +727,3 @@
|
720 |
727 |
/// adapted digraph. The default type is
|
721 |
|
/// \ref concepts::Digraph::ArcMap "GR::ArcMap<bool>".
|
|
728 |
/// \ref concepts::Digraph::ArcMap "DGR::ArcMap<bool>".
|
722 |
729 |
///
|
... |
... |
@@ -728,10 +735,10 @@
|
728 |
735 |
#ifdef DOXYGEN
|
729 |
|
template<typename GR, typename NF, typename AF>
|
|
736 |
template<typename DGR, typename NF, typename AF>
|
730 |
737 |
class SubDigraph {
|
731 |
738 |
#else
|
732 |
|
template<typename GR,
|
733 |
|
typename NF = typename GR::template NodeMap<bool>,
|
734 |
|
typename AF = typename GR::template ArcMap<bool> >
|
|
739 |
template<typename DGR,
|
|
740 |
typename NF = typename DGR::template NodeMap<bool>,
|
|
741 |
typename AF = typename DGR::template ArcMap<bool> >
|
735 |
742 |
class SubDigraph :
|
736 |
|
public DigraphAdaptorExtender<SubDigraphBase<GR, NF, AF, true> > {
|
|
743 |
public DigraphAdaptorExtender<SubDigraphBase<DGR, NF, AF, true> > {
|
737 |
744 |
#endif
|
... |
... |
@@ -739,3 +746,3 @@
|
739 |
746 |
/// The type of the adapted digraph.
|
740 |
|
typedef GR Digraph;
|
|
747 |
typedef DGR Digraph;
|
741 |
748 |
/// The type of the node filter map.
|
... |
... |
@@ -745,3 +752,3 @@
|
745 |
752 |
|
746 |
|
typedef DigraphAdaptorExtender<SubDigraphBase<GR, NF, AF, true> >
|
|
753 |
typedef DigraphAdaptorExtender<SubDigraphBase<DGR, NF, AF, true> >
|
747 |
754 |
Parent;
|
... |
... |
@@ -759,7 +766,4 @@
|
759 |
766 |
/// given node and arc filter maps.
|
760 |
|
SubDigraph(Digraph& digraph, NodeFilterMap& node_filter,
|
761 |
|
ArcFilterMap& arc_filter) {
|
762 |
|
setDigraph(digraph);
|
763 |
|
setNodeFilterMap(node_filter);
|
764 |
|
setArcFilterMap(arc_filter);
|
|
767 |
SubDigraph(DGR& digraph, NF& node_filter, AF& arc_filter) {
|
|
768 |
Parent::initialize(digraph, node_filter, arc_filter);
|
765 |
769 |
}
|
... |
... |
@@ -825,32 +829,32 @@
|
825 |
829 |
/// \relates SubDigraph
|
826 |
|
template<typename GR, typename NF, typename AF>
|
827 |
|
SubDigraph<const GR, NF, AF>
|
828 |
|
subDigraph(const GR& digraph,
|
829 |
|
NF& node_filter_map, AF& arc_filter_map) {
|
830 |
|
return SubDigraph<const GR, NF, AF>
|
831 |
|
(digraph, node_filter_map, arc_filter_map);
|
|
830 |
template<typename DGR, typename NF, typename AF>
|
|
831 |
SubDigraph<const DGR, NF, AF>
|
|
832 |
subDigraph(const DGR& digraph,
|
|
833 |
NF& node_filter, AF& arc_filter) {
|
|
834 |
return SubDigraph<const DGR, NF, AF>
|
|
835 |
(digraph, node_filter, arc_filter);
|
832 |
836 |
}
|
833 |
837 |
|
834 |
|
template<typename GR, typename NF, typename AF>
|
835 |
|
SubDigraph<const GR, const NF, AF>
|
836 |
|
subDigraph(const GR& digraph,
|
837 |
|
const NF& node_filter_map, AF& arc_filter_map) {
|
838 |
|
return SubDigraph<const GR, const NF, AF>
|
839 |
|
(digraph, node_filter_map, arc_filter_map);
|
|
838 |
template<typename DGR, typename NF, typename AF>
|
|
839 |
SubDigraph<const DGR, const NF, AF>
|
|
840 |
subDigraph(const DGR& digraph,
|
|
841 |
const NF& node_filter, AF& arc_filter) {
|
|
842 |
return SubDigraph<const DGR, const NF, AF>
|
|
843 |
(digraph, node_filter, arc_filter);
|
840 |
844 |
}
|
841 |
845 |
|
842 |
|
template<typename GR, typename NF, typename AF>
|
843 |
|
SubDigraph<const GR, NF, const AF>
|
844 |
|
subDigraph(const GR& digraph,
|
845 |
|
NF& node_filter_map, const AF& arc_filter_map) {
|
846 |
|
return SubDigraph<const GR, NF, const AF>
|
847 |
|
(digraph, node_filter_map, arc_filter_map);
|
|
846 |
template<typename DGR, typename NF, typename AF>
|
|
847 |
SubDigraph<const DGR, NF, const AF>
|
|
848 |
subDigraph(const DGR& digraph,
|
|
849 |
NF& node_filter, const AF& arc_filter) {
|
|
850 |
return SubDigraph<const DGR, NF, const AF>
|
|
851 |
(digraph, node_filter, arc_filter);
|
848 |
852 |
}
|
849 |
853 |
|
850 |
|
template<typename GR, typename NF, typename AF>
|
851 |
|
SubDigraph<const GR, const NF, const AF>
|
852 |
|
subDigraph(const GR& digraph,
|
853 |
|
const NF& node_filter_map, const AF& arc_filter_map) {
|
854 |
|
return SubDigraph<const GR, const NF, const AF>
|
855 |
|
(digraph, node_filter_map, arc_filter_map);
|
|
854 |
template<typename DGR, typename NF, typename AF>
|
|
855 |
SubDigraph<const DGR, const NF, const AF>
|
|
856 |
subDigraph(const DGR& digraph,
|
|
857 |
const NF& node_filter, const AF& arc_filter) {
|
|
858 |
return SubDigraph<const DGR, const NF, const AF>
|
|
859 |
(digraph, node_filter, arc_filter);
|
856 |
860 |
}
|
... |
... |
@@ -858,25 +862,23 @@
|
858 |
862 |
|
859 |
|
template <typename _Graph, typename _NodeFilterMap,
|
860 |
|
typename _EdgeFilterMap, bool _checked = true>
|
861 |
|
class SubGraphBase : public GraphAdaptorBase<_Graph> {
|
|
863 |
template <typename GR, typename NF, typename EF, bool ch = true>
|
|
864 |
class SubGraphBase : public GraphAdaptorBase<GR> {
|
862 |
865 |
public:
|
863 |
|
typedef _Graph Graph;
|
864 |
|
typedef _NodeFilterMap NodeFilterMap;
|
865 |
|
typedef _EdgeFilterMap EdgeFilterMap;
|
|
866 |
typedef GR Graph;
|
|
867 |
typedef NF NodeFilterMap;
|
|
868 |
typedef EF EdgeFilterMap;
|
866 |
869 |
|
867 |
870 |
typedef SubGraphBase Adaptor;
|
868 |
|
typedef GraphAdaptorBase<_Graph> Parent;
|
|
871 |
typedef GraphAdaptorBase<GR> Parent;
|
869 |
872 |
protected:
|
870 |
873 |
|
871 |
|
NodeFilterMap* _node_filter_map;
|
872 |
|
EdgeFilterMap* _edge_filter_map;
|
|
874 |
NF* _node_filter;
|
|
875 |
EF* _edge_filter;
|
873 |
876 |
|
874 |
877 |
SubGraphBase()
|
875 |
|
: Parent(), _node_filter_map(0), _edge_filter_map(0) { }
|
876 |
|
|
877 |
|
void setNodeFilterMap(NodeFilterMap& node_filter_map) {
|
878 |
|
_node_filter_map=&node_filter_map;
|
879 |
|
}
|
880 |
|
void setEdgeFilterMap(EdgeFilterMap& edge_filter_map) {
|
881 |
|
_edge_filter_map=&edge_filter_map;
|
|
878 |
: Parent(), _node_filter(0), _edge_filter(0) { }
|
|
879 |
|
|
880 |
void initialize(GR& graph, NF& node_filter, EF& edge_filter) {
|
|
881 |
Parent::initialize(graph);
|
|
882 |
_node_filter = &node_filter;
|
|
883 |
_edge_filter = &edge_filter;
|
882 |
884 |
}
|
... |
... |
@@ -891,3 +893,3 @@
|
891 |
893 |
Parent::first(i);
|
892 |
|
while (i!=INVALID && !(*_node_filter_map)[i]) Parent::next(i);
|
|
894 |
while (i!=INVALID && !(*_node_filter)[i]) Parent::next(i);
|
893 |
895 |
}
|
... |
... |
@@ -896,5 +898,5 @@
|
896 |
898 |
Parent::first(i);
|
897 |
|
while (i!=INVALID && (!(*_edge_filter_map)[i]
|
898 |
|
|| !(*_node_filter_map)[Parent::source(i)]
|
899 |
|
|| !(*_node_filter_map)[Parent::target(i)]))
|
|
899 |
while (i!=INVALID && (!(*_edge_filter)[i]
|
|
900 |
|| !(*_node_filter)[Parent::source(i)]
|
|
901 |
|| !(*_node_filter)[Parent::target(i)]))
|
900 |
902 |
Parent::next(i);
|
... |
... |
@@ -904,5 +906,5 @@
|
904 |
906 |
Parent::first(i);
|
905 |
|
while (i!=INVALID && (!(*_edge_filter_map)[i]
|
906 |
|
|| !(*_node_filter_map)[Parent::u(i)]
|
907 |
|
|| !(*_node_filter_map)[Parent::v(i)]))
|
|
907 |
while (i!=INVALID && (!(*_edge_filter)[i]
|
|
908 |
|| !(*_node_filter)[Parent::u(i)]
|
|
909 |
|| !(*_node_filter)[Parent::v(i)]))
|
908 |
910 |
Parent::next(i);
|
... |
... |
@@ -912,4 +914,4 @@
|
912 |
914 |
Parent::firstIn(i, n);
|
913 |
|
while (i!=INVALID && (!(*_edge_filter_map)[i]
|
914 |
|
|| !(*_node_filter_map)[Parent::source(i)]))
|
|
915 |
while (i!=INVALID && (!(*_edge_filter)[i]
|
|
916 |
|| !(*_node_filter)[Parent::source(i)]))
|
915 |
917 |
Parent::nextIn(i);
|
... |
... |
@@ -919,4 +921,4 @@
|
919 |
921 |
Parent::firstOut(i, n);
|
920 |
|
while (i!=INVALID && (!(*_edge_filter_map)[i]
|
921 |
|
|| !(*_node_filter_map)[Parent::target(i)]))
|
|
922 |
while (i!=INVALID && (!(*_edge_filter)[i]
|
|
923 |
|| !(*_node_filter)[Parent::target(i)]))
|
922 |
924 |
Parent::nextOut(i);
|
... |
... |
@@ -926,5 +928,5 @@
|
926 |
928 |
Parent::firstInc(i, d, n);
|
927 |
|
while (i!=INVALID && (!(*_edge_filter_map)[i]
|
928 |
|
|| !(*_node_filter_map)[Parent::u(i)]
|
929 |
|
|| !(*_node_filter_map)[Parent::v(i)]))
|
|
929 |
while (i!=INVALID && (!(*_edge_filter)[i]
|
|
930 |
|| !(*_node_filter)[Parent::u(i)]
|
|
931 |
|| !(*_node_filter)[Parent::v(i)]))
|
930 |
932 |
Parent::nextInc(i, d);
|
... |
... |
@@ -934,3 +936,3 @@
|
934 |
936 |
Parent::next(i);
|
935 |
|
while (i!=INVALID && !(*_node_filter_map)[i]) Parent::next(i);
|
|
937 |
while (i!=INVALID && !(*_node_filter)[i]) Parent::next(i);
|
936 |
938 |
}
|
... |
... |
@@ -939,5 +941,5 @@
|
939 |
941 |
Parent::next(i);
|
940 |
|
while (i!=INVALID && (!(*_edge_filter_map)[i]
|
941 |
|
|| !(*_node_filter_map)[Parent::source(i)]
|
942 |
|
|| !(*_node_filter_map)[Parent::target(i)]))
|
|
942 |
while (i!=INVALID && (!(*_edge_filter)[i]
|
|
943 |
|| !(*_node_filter)[Parent::source(i)]
|
|
944 |
|| !(*_node_filter)[Parent::target(i)]))
|
943 |
945 |
Parent::next(i);
|
... |
... |
@@ -947,5 +949,5 @@
|
947 |
949 |
Parent::next(i);
|
948 |
|
while (i!=INVALID && (!(*_edge_filter_map)[i]
|
949 |
|
|| !(*_node_filter_map)[Parent::u(i)]
|
950 |
|
|| !(*_node_filter_map)[Parent::v(i)]))
|
|
950 |
while (i!=INVALID && (!(*_edge_filter)[i]
|
|
951 |
|| !(*_node_filter)[Parent::u(i)]
|
|
952 |
|| !(*_node_filter)[Parent::v(i)]))
|
951 |
953 |
Parent::next(i);
|
... |
... |
@@ -955,4 +957,4 @@
|
955 |
957 |
Parent::nextIn(i);
|
956 |
|
while (i!=INVALID && (!(*_edge_filter_map)[i]
|
957 |
|
|| !(*_node_filter_map)[Parent::source(i)]))
|
|
958 |
while (i!=INVALID && (!(*_edge_filter)[i]
|
|
959 |
|| !(*_node_filter)[Parent::source(i)]))
|
958 |
960 |
Parent::nextIn(i);
|
... |
... |
@@ -962,4 +964,4 @@
|
962 |
964 |
Parent::nextOut(i);
|
963 |
|
while (i!=INVALID && (!(*_edge_filter_map)[i]
|
964 |
|
|| !(*_node_filter_map)[Parent::target(i)]))
|
|
965 |
while (i!=INVALID && (!(*_edge_filter)[i]
|
|
966 |
|| !(*_node_filter)[Parent::target(i)]))
|
965 |
967 |
Parent::nextOut(i);
|
... |
... |
@@ -969,5 +971,5 @@
|
969 |
971 |
Parent::nextInc(i, d);
|
970 |
|
while (i!=INVALID && (!(*_edge_filter_map)[i]
|
971 |
|
|| !(*_node_filter_map)[Parent::u(i)]
|
972 |
|
|| !(*_node_filter_map)[Parent::v(i)]))
|
|
972 |
while (i!=INVALID && (!(*_edge_filter)[i]
|
|
973 |
|| !(*_node_filter)[Parent::u(i)]
|
|
974 |
|| !(*_node_filter)[Parent::v(i)]))
|
973 |
975 |
Parent::nextInc(i, d);
|
... |
... |
@@ -975,7 +977,7 @@
|
975 |
977 |
|
976 |
|
void status(const Node& n, bool v) const { _node_filter_map->set(n, v); }
|
977 |
|
void status(const Edge& e, bool v) const { _edge_filter_map->set(e, v); }
|
978 |
|
|
979 |
|
bool status(const Node& n) const { return (*_node_filter_map)[n]; }
|
980 |
|
bool status(const Edge& e) const { return (*_edge_filter_map)[e]; }
|
|
978 |
void status(const Node& n, bool v) const { _node_filter->set(n, v); }
|
|
979 |
void status(const Edge& e, bool v) const { _edge_filter->set(e, v); }
|
|
980 |
|
|
981 |
bool status(const Node& n) const { return (*_node_filter)[n]; }
|
|
982 |
bool status(const Edge& e) const { return (*_edge_filter)[e]; }
|
981 |
983 |
|
... |
... |
@@ -988,3 +990,3 @@
|
988 |
990 |
const Arc& prev = INVALID) const {
|
989 |
|
if (!(*_node_filter_map)[u] || !(*_node_filter_map)[v]) {
|
|
991 |
if (!(*_node_filter)[u] || !(*_node_filter)[v]) {
|
990 |
992 |
return INVALID;
|
... |
... |
@@ -992,3 +994,3 @@
|
992 |
994 |
Arc arc = Parent::findArc(u, v, prev);
|
993 |
|
while (arc != INVALID && !(*_edge_filter_map)[arc]) {
|
|
995 |
while (arc != INVALID && !(*_edge_filter)[arc]) {
|
994 |
996 |
arc = Parent::findArc(u, v, arc);
|
... |
... |
@@ -1001,3 +1003,3 @@
|
1001 |
1003 |
const Edge& prev = INVALID) const {
|
1002 |
|
if (!(*_node_filter_map)[u] || !(*_node_filter_map)[v]) {
|
|
1004 |
if (!(*_node_filter)[u] || !(*_node_filter)[v]) {
|
1003 |
1005 |
return INVALID;
|
... |
... |
@@ -1005,3 +1007,3 @@
|
1005 |
1007 |
Edge edge = Parent::findEdge(u, v, prev);
|
1006 |
|
while (edge != INVALID && !(*_edge_filter_map)[edge]) {
|
|
1008 |
while (edge != INVALID && !(*_edge_filter)[edge]) {
|
1007 |
1009 |
edge = Parent::findEdge(u, v, edge);
|
... |
... |
@@ -1011,14 +1013,15 @@
|
1011 |
1013 |
|
1012 |
|
template <typename _Value>
|
1013 |
|
class NodeMap : public SubMapExtender<Adaptor,
|
1014 |
|
typename Parent::template NodeMap<_Value> > {
|
|
1014 |
template <typename V>
|
|
1015 |
class NodeMap
|
|
1016 |
: public SubMapExtender<SubGraphBase<GR, NF, EF, ch>,
|
|
1017 |
LEMON_SCOPE_FIX(GraphAdaptorBase<GR>, NodeMap<V>)> {
|
1015 |
1018 |
public:
|
1016 |
|
typedef _Value Value;
|
1017 |
|
typedef SubMapExtender<Adaptor, typename Parent::
|
1018 |
|
template NodeMap<Value> > MapParent;
|
1019 |
|
|
1020 |
|
NodeMap(const Adaptor& adaptor)
|
1021 |
|
: MapParent(adaptor) {}
|
1022 |
|
NodeMap(const Adaptor& adaptor, const Value& value)
|
1023 |
|
: MapParent(adaptor, value) {}
|
|
1019 |
typedef V Value;
|
|
1020 |
typedef SubMapExtender<SubGraphBase<GR, NF, EF, ch>,
|
|
1021 |
LEMON_SCOPE_FIX(GraphAdaptorBase<GR>, NodeMap<V>)> Parent;
|
|
1022 |
|
|
1023 |
NodeMap(const SubGraphBase<GR, NF, EF, ch>& adaptor)
|
|
1024 |
: Parent(adaptor) {}
|
|
1025 |
NodeMap(const SubGraphBase<GR, NF, EF, ch>& adaptor, const V& value)
|
|
1026 |
: Parent(adaptor, value) {}
|
1024 |
1027 |
|
... |
... |
@@ -1031,3 +1034,3 @@
|
1031 |
1034 |
NodeMap& operator=(const CMap& cmap) {
|
1032 |
|
MapParent::operator=(cmap);
|
|
1035 |
Parent::operator=(cmap);
|
1033 |
1036 |
return *this;
|
... |
... |
@@ -1036,14 +1039,15 @@
|
1036 |
1039 |
|
1037 |
|
template <typename _Value>
|
1038 |
|
class ArcMap : public SubMapExtender<Adaptor,
|
1039 |
|
typename Parent::template ArcMap<_Value> > {
|
|
1040 |
template <typename V>
|
|
1041 |
class ArcMap
|
|
1042 |
: public SubMapExtender<SubGraphBase<GR, NF, EF, ch>,
|
|
1043 |
LEMON_SCOPE_FIX(GraphAdaptorBase<GR>, ArcMap<V>)> {
|
1040 |
1044 |
public:
|
1041 |
|
typedef _Value Value;
|
1042 |
|
typedef SubMapExtender<Adaptor, typename Parent::
|
1043 |
|
template ArcMap<Value> > MapParent;
|
1044 |
|
|
1045 |
|
ArcMap(const Adaptor& adaptor)
|
1046 |
|
: MapParent(adaptor) {}
|
1047 |
|
ArcMap(const Adaptor& adaptor, const Value& value)
|
1048 |
|
: MapParent(adaptor, value) {}
|
|
1045 |
typedef V Value;
|
|
1046 |
typedef SubMapExtender<SubGraphBase<GR, NF, EF, ch>,
|
|
1047 |
LEMON_SCOPE_FIX(GraphAdaptorBase<GR>, ArcMap<V>)> Parent;
|
|
1048 |
|
|
1049 |
ArcMap(const SubGraphBase<GR, NF, EF, ch>& adaptor)
|
|
1050 |
: Parent(adaptor) {}
|
|
1051 |
ArcMap(const SubGraphBase<GR, NF, EF, ch>& adaptor, const V& value)
|
|
1052 |
: Parent(adaptor, value) {}
|
1049 |
1053 |
|
... |
... |
@@ -1056,3 +1060,3 @@
|
1056 |
1060 |
ArcMap& operator=(const CMap& cmap) {
|
1057 |
|
MapParent::operator=(cmap);
|
|
1061 |
Parent::operator=(cmap);
|
1058 |
1062 |
return *this;
|
... |
... |
@@ -1061,15 +1065,16 @@
|
1061 |
1065 |
|
1062 |
|
template <typename _Value>
|
1063 |
|
class EdgeMap : public SubMapExtender<Adaptor,
|
1064 |
|
typename Parent::template EdgeMap<_Value> > {
|
|
1066 |
template <typename V>
|
|
1067 |
class EdgeMap
|
|
1068 |
: public SubMapExtender<SubGraphBase<GR, NF, EF, ch>,
|
|
1069 |
LEMON_SCOPE_FIX(GraphAdaptorBase<GR>, EdgeMap<V>)> {
|
1065 |
1070 |
public:
|
1066 |
|
typedef _Value Value;
|
1067 |
|
typedef SubMapExtender<Adaptor, typename Parent::
|
1068 |
|
template EdgeMap<Value> > MapParent;
|
1069 |
|
|
1070 |
|
EdgeMap(const Adaptor& adaptor)
|
1071 |
|
: MapParent(adaptor) {}
|
1072 |
|
|
1073 |
|
EdgeMap(const Adaptor& adaptor, const Value& value)
|
1074 |
|
: MapParent(adaptor, value) {}
|
|
1071 |
typedef V Value;
|
|
1072 |
typedef SubMapExtender<SubGraphBase<GR, NF, EF, ch>,
|
|
1073 |
LEMON_SCOPE_FIX(GraphAdaptorBase<GR>, EdgeMap<V>)> Parent;
|
|
1074 |
|
|
1075 |
EdgeMap(const SubGraphBase<GR, NF, EF, ch>& adaptor)
|
|
1076 |
: Parent(adaptor) {}
|
|
1077 |
|
|
1078 |
EdgeMap(const SubGraphBase<GR, NF, EF, ch>& adaptor, const V& value)
|
|
1079 |
: Parent(adaptor, value) {}
|
1075 |
1080 |
|
... |
... |
@@ -1082,3 +1087,3 @@
|
1082 |
1087 |
EdgeMap& operator=(const CMap& cmap) {
|
1083 |
|
MapParent::operator=(cmap);
|
|
1088 |
Parent::operator=(cmap);
|
1084 |
1089 |
return *this;
|
... |
... |
@@ -1089,23 +1094,22 @@
|
1089 |
1094 |
|
1090 |
|
template <typename _Graph, typename _NodeFilterMap, typename _EdgeFilterMap>
|
1091 |
|
class SubGraphBase<_Graph, _NodeFilterMap, _EdgeFilterMap, false>
|
1092 |
|
: public GraphAdaptorBase<_Graph> {
|
|
1095 |
template <typename GR, typename NF, typename EF>
|
|
1096 |
class SubGraphBase<GR, NF, EF, false>
|
|
1097 |
: public GraphAdaptorBase<GR> {
|
1093 |
1098 |
public:
|
1094 |
|
typedef _Graph Graph;
|
1095 |
|
typedef _NodeFilterMap NodeFilterMap;
|
1096 |
|
typedef _EdgeFilterMap EdgeFilterMap;
|
|
1099 |
typedef GR Graph;
|
|
1100 |
typedef NF NodeFilterMap;
|
|
1101 |
typedef EF EdgeFilterMap;
|
1097 |
1102 |
|
1098 |
1103 |
typedef SubGraphBase Adaptor;
|
1099 |
|
typedef GraphAdaptorBase<_Graph> Parent;
|
|
1104 |
typedef GraphAdaptorBase<GR> Parent;
|
1100 |
1105 |
protected:
|
1101 |
|
NodeFilterMap* _node_filter_map;
|
1102 |
|
EdgeFilterMap* _edge_filter_map;
|
1103 |
|
SubGraphBase() : Parent(),
|
1104 |
|
_node_filter_map(0), _edge_filter_map(0) { }
|
1105 |
|
|
1106 |
|
void setNodeFilterMap(NodeFilterMap& node_filter_map) {
|
1107 |
|
_node_filter_map=&node_filter_map;
|
1108 |
|
}
|
1109 |
|
void setEdgeFilterMap(EdgeFilterMap& edge_filter_map) {
|
1110 |
|
_edge_filter_map=&edge_filter_map;
|
|
1106 |
NF* _node_filter;
|
|
1107 |
EF* _edge_filter;
|
|
1108 |
SubGraphBase()
|
|
1109 |
: Parent(), _node_filter(0), _edge_filter(0) { }
|
|
1110 |
|
|
1111 |
void initialize(GR& graph, NF& node_filter, EF& edge_filter) {
|
|
1112 |
Parent::initialize(graph);
|
|
1113 |
_node_filter = &node_filter;
|
|
1114 |
_edge_filter = &edge_filter;
|
1111 |
1115 |
}
|
... |
... |
@@ -1120,3 +1124,3 @@
|
1120 |
1124 |
Parent::first(i);
|
1121 |
|
while (i!=INVALID && !(*_node_filter_map)[i]) Parent::next(i);
|
|
1125 |
while (i!=INVALID && !(*_node_filter)[i]) Parent::next(i);
|
1122 |
1126 |
}
|
... |
... |
@@ -1125,3 +1129,3 @@
|
1125 |
1129 |
Parent::first(i);
|
1126 |
|
while (i!=INVALID && !(*_edge_filter_map)[i]) Parent::next(i);
|
|
1130 |
while (i!=INVALID && !(*_edge_filter)[i]) Parent::next(i);
|
1127 |
1131 |
}
|
... |
... |
@@ -1130,3 +1134,3 @@
|
1130 |
1134 |
Parent::first(i);
|
1131 |
|
while (i!=INVALID && !(*_edge_filter_map)[i]) Parent::next(i);
|
|
1135 |
while (i!=INVALID && !(*_edge_filter)[i]) Parent::next(i);
|
1132 |
1136 |
}
|
... |
... |
@@ -1135,3 +1139,3 @@
|
1135 |
1139 |
Parent::firstIn(i, n);
|
1136 |
|
while (i!=INVALID && !(*_edge_filter_map)[i]) Parent::nextIn(i);
|
|
1140 |
while (i!=INVALID && !(*_edge_filter)[i]) Parent::nextIn(i);
|
1137 |
1141 |
}
|
... |
... |
@@ -1140,3 +1144,3 @@
|
1140 |
1144 |
Parent::firstOut(i, n);
|
1141 |
|
while (i!=INVALID && !(*_edge_filter_map)[i]) Parent::nextOut(i);
|
|
1145 |
while (i!=INVALID && !(*_edge_filter)[i]) Parent::nextOut(i);
|
1142 |
1146 |
}
|
... |
... |
@@ -1145,3 +1149,3 @@
|
1145 |
1149 |
Parent::firstInc(i, d, n);
|
1146 |
|
while (i!=INVALID && !(*_edge_filter_map)[i]) Parent::nextInc(i, d);
|
|
1150 |
while (i!=INVALID && !(*_edge_filter)[i]) Parent::nextInc(i, d);
|
1147 |
1151 |
}
|
... |
... |
@@ -1150,3 +1154,3 @@
|
1150 |
1154 |
Parent::next(i);
|
1151 |
|
while (i!=INVALID && !(*_node_filter_map)[i]) Parent::next(i);
|
|
1155 |
while (i!=INVALID && !(*_node_filter)[i]) Parent::next(i);
|
1152 |
1156 |
}
|
... |
... |
@@ -1154,3 +1158,3 @@
|
1154 |
1158 |
Parent::next(i);
|
1155 |
|
while (i!=INVALID && !(*_edge_filter_map)[i]) Parent::next(i);
|
|
1159 |
while (i!=INVALID && !(*_edge_filter)[i]) Parent::next(i);
|
1156 |
1160 |
}
|
... |
... |
@@ -1158,3 +1162,3 @@
|
1158 |
1162 |
Parent::next(i);
|
1159 |
|
while (i!=INVALID && !(*_edge_filter_map)[i]) Parent::next(i);
|
|
1163 |
while (i!=INVALID && !(*_edge_filter)[i]) Parent::next(i);
|
1160 |
1164 |
}
|
... |
... |
@@ -1162,3 +1166,3 @@
|
1162 |
1166 |
Parent::nextIn(i);
|
1163 |
|
while (i!=INVALID && !(*_edge_filter_map)[i]) Parent::nextIn(i);
|
|
1167 |
while (i!=INVALID && !(*_edge_filter)[i]) Parent::nextIn(i);
|
1164 |
1168 |
}
|
... |
... |
@@ -1167,3 +1171,3 @@
|
1167 |
1171 |
Parent::nextOut(i);
|
1168 |
|
while (i!=INVALID && !(*_edge_filter_map)[i]) Parent::nextOut(i);
|
|
1172 |
while (i!=INVALID && !(*_edge_filter)[i]) Parent::nextOut(i);
|
1169 |
1173 |
}
|
... |
... |
@@ -1171,10 +1175,10 @@
|
1171 |
1175 |
Parent::nextInc(i, d);
|
1172 |
|
while (i!=INVALID && !(*_edge_filter_map)[i]) Parent::nextInc(i, d);
|
|
1176 |
while (i!=INVALID && !(*_edge_filter)[i]) Parent::nextInc(i, d);
|
1173 |
1177 |
}
|
1174 |
1178 |
|
1175 |
|
void status(const Node& n, bool v) const { _node_filter_map->set(n, v); }
|
1176 |
|
void status(const Edge& e, bool v) const { _edge_filter_map->set(e, v); }
|
1177 |
|
|
1178 |
|
bool status(const Node& n) const { return (*_node_filter_map)[n]; }
|
1179 |
|
bool status(const Edge& e) const { return (*_edge_filter_map)[e]; }
|
|
1179 |
void status(const Node& n, bool v) const { _node_filter->set(n, v); }
|
|
1180 |
void status(const Edge& e, bool v) const { _edge_filter->set(e, v); }
|
|
1181 |
|
|
1182 |
bool status(const Node& n) const { return (*_node_filter)[n]; }
|
|
1183 |
bool status(const Edge& e) const { return (*_edge_filter)[e]; }
|
1180 |
1184 |
|
... |
... |
@@ -1188,3 +1192,3 @@
|
1188 |
1192 |
Arc arc = Parent::findArc(u, v, prev);
|
1189 |
|
while (arc != INVALID && !(*_edge_filter_map)[arc]) {
|
|
1193 |
while (arc != INVALID && !(*_edge_filter)[arc]) {
|
1190 |
1194 |
arc = Parent::findArc(u, v, arc);
|
... |
... |
@@ -1198,3 +1202,3 @@
|
1198 |
1202 |
Edge edge = Parent::findEdge(u, v, prev);
|
1199 |
|
while (edge != INVALID && !(*_edge_filter_map)[edge]) {
|
|
1203 |
while (edge != INVALID && !(*_edge_filter)[edge]) {
|
1200 |
1204 |
edge = Parent::findEdge(u, v, edge);
|
... |
... |
@@ -1204,14 +1208,15 @@
|
1204 |
1208 |
|
1205 |
|
template <typename _Value>
|
1206 |
|
class NodeMap : public SubMapExtender<Adaptor,
|
1207 |
|
typename Parent::template NodeMap<_Value> > {
|
|
1209 |
template <typename V>
|
|
1210 |
class NodeMap
|
|
1211 |
: public SubMapExtender<SubGraphBase<GR, NF, EF, false>,
|
|
1212 |
LEMON_SCOPE_FIX(GraphAdaptorBase<GR>, NodeMap<V>)> {
|
1208 |
1213 |
public:
|
1209 |
|
typedef _Value Value;
|
1210 |
|
typedef SubMapExtender<Adaptor, typename Parent::
|
1211 |
|
template NodeMap<Value> > MapParent;
|
1212 |
|
|
1213 |
|
NodeMap(const Adaptor& adaptor)
|
1214 |
|
: MapParent(adaptor) {}
|
1215 |
|
NodeMap(const Adaptor& adaptor, const Value& value)
|
1216 |
|
: MapParent(adaptor, value) {}
|
|
1214 |
typedef V Value;
|
|
1215 |
typedef SubMapExtender<SubGraphBase<GR, NF, EF, false>,
|
|
1216 |
LEMON_SCOPE_FIX(GraphAdaptorBase<GR>, NodeMap<V>)> Parent;
|
|
1217 |
|
|
1218 |
NodeMap(const SubGraphBase<GR, NF, EF, false>& adaptor)
|
|
1219 |
: Parent(adaptor) {}
|
|
1220 |
NodeMap(const SubGraphBase<GR, NF, EF, false>& adaptor, const V& value)
|
|
1221 |
: Parent(adaptor, value) {}
|
1217 |
1222 |
|
... |
... |
@@ -1224,3 +1229,3 @@
|
1224 |
1229 |
NodeMap& operator=(const CMap& cmap) {
|
1225 |
|
MapParent::operator=(cmap);
|
|
1230 |
Parent::operator=(cmap);
|
1226 |
1231 |
return *this;
|
... |
... |
@@ -1229,14 +1234,15 @@
|
1229 |
1234 |
|
1230 |
|
template <typename _Value>
|
1231 |
|
class ArcMap : public SubMapExtender<Adaptor,
|
1232 |
|
typename Parent::template ArcMap<_Value> > {
|
|
1235 |
template <typename V>
|
|
1236 |
class ArcMap
|
|
1237 |
: public SubMapExtender<SubGraphBase<GR, NF, EF, false>,
|
|
1238 |
LEMON_SCOPE_FIX(GraphAdaptorBase<GR>, ArcMap<V>)> {
|
1233 |
1239 |
public:
|
1234 |
|
typedef _Value Value;
|
1235 |
|
typedef SubMapExtender<Adaptor, typename Parent::
|
1236 |
|
template ArcMap<Value> > MapParent;
|
1237 |
|
|
1238 |
|
ArcMap(const Adaptor& adaptor)
|
1239 |
|
: MapParent(adaptor) {}
|
1240 |
|
ArcMap(const Adaptor& adaptor, const Value& value)
|
1241 |
|
: MapParent(adaptor, value) {}
|
|
1240 |
typedef V Value;
|
|
1241 |
typedef SubMapExtender<SubGraphBase<GR, NF, EF, false>,
|
|
1242 |
LEMON_SCOPE_FIX(GraphAdaptorBase<GR>, ArcMap<V>)> Parent;
|
|
1243 |
|
|
1244 |
ArcMap(const SubGraphBase<GR, NF, EF, false>& adaptor)
|
|
1245 |
: Parent(adaptor) {}
|
|
1246 |
ArcMap(const SubGraphBase<GR, NF, EF, false>& adaptor, const V& value)
|
|
1247 |
: Parent(adaptor, value) {}
|
1242 |
1248 |
|
... |
... |
@@ -1249,3 +1255,3 @@
|
1249 |
1255 |
ArcMap& operator=(const CMap& cmap) {
|
1250 |
|
MapParent::operator=(cmap);
|
|
1256 |
Parent::operator=(cmap);
|
1251 |
1257 |
return *this;
|
... |
... |
@@ -1254,15 +1260,16 @@
|
1254 |
1260 |
|
1255 |
|
template <typename _Value>
|
1256 |
|
class EdgeMap : public SubMapExtender<Adaptor,
|
1257 |
|
typename Parent::template EdgeMap<_Value> > {
|
|
1261 |
template <typename V>
|
|
1262 |
class EdgeMap
|
|
1263 |
: public SubMapExtender<SubGraphBase<GR, NF, EF, false>,
|
|
1264 |
LEMON_SCOPE_FIX(GraphAdaptorBase<GR>, EdgeMap<V>)> {
|
1258 |
1265 |
public:
|
1259 |
|
typedef _Value Value;
|
1260 |
|
typedef SubMapExtender<Adaptor, typename Parent::
|
1261 |
|
template EdgeMap<Value> > MapParent;
|
1262 |
|
|
1263 |
|
EdgeMap(const Adaptor& adaptor)
|
1264 |
|
: MapParent(adaptor) {}
|
1265 |
|
|
1266 |
|
EdgeMap(const Adaptor& adaptor, const _Value& value)
|
1267 |
|
: MapParent(adaptor, value) {}
|
|
1266 |
typedef V Value;
|
|
1267 |
typedef SubMapExtender<SubGraphBase<GR, NF, EF, false>,
|
|
1268 |
LEMON_SCOPE_FIX(GraphAdaptorBase<GR>, EdgeMap<V>)> Parent;
|
|
1269 |
|
|
1270 |
EdgeMap(const SubGraphBase<GR, NF, EF, false>& adaptor)
|
|
1271 |
: Parent(adaptor) {}
|
|
1272 |
|
|
1273 |
EdgeMap(const SubGraphBase<GR, NF, EF, false>& adaptor, const V& value)
|
|
1274 |
: Parent(adaptor, value) {}
|
1268 |
1275 |
|
... |
... |
@@ -1275,3 +1282,3 @@
|
1275 |
1282 |
EdgeMap& operator=(const CMap& cmap) {
|
1276 |
|
MapParent::operator=(cmap);
|
|
1283 |
Parent::operator=(cmap);
|
1277 |
1284 |
return *this;
|
... |
... |
@@ -1334,3 +1341,3 @@
|
1334 |
1341 |
|
1335 |
|
typedef GraphAdaptorExtender< SubGraphBase<GR, NF, EF, true> >
|
|
1342 |
typedef GraphAdaptorExtender<SubGraphBase<GR, NF, EF, true> >
|
1336 |
1343 |
Parent;
|
... |
... |
@@ -1348,7 +1355,4 @@
|
1348 |
1355 |
/// and edge filter maps.
|
1349 |
|
SubGraph(Graph& graph, NodeFilterMap& node_filter_map,
|
1350 |
|
EdgeFilterMap& edge_filter_map) {
|
1351 |
|
setGraph(graph);
|
1352 |
|
setNodeFilterMap(node_filter_map);
|
1353 |
|
setEdgeFilterMap(edge_filter_map);
|
|
1356 |
SubGraph(GR& graph, NF& node_filter, EF& edge_filter) {
|
|
1357 |
initialize(graph, node_filter, edge_filter);
|
1354 |
1358 |
}
|
... |
... |
@@ -1416,6 +1420,5 @@
|
1416 |
1420 |
SubGraph<const GR, NF, EF>
|
1417 |
|
subGraph(const GR& graph,
|
1418 |
|
NF& node_filter_map, EF& edge_filter_map) {
|
|
1421 |
subGraph(const GR& graph, NF& node_filter, EF& edge_filter) {
|
1419 |
1422 |
return SubGraph<const GR, NF, EF>
|
1420 |
|
(graph, node_filter_map, edge_filter_map);
|
|
1423 |
(graph, node_filter, edge_filter);
|
1421 |
1424 |
}
|
... |
... |
@@ -1424,6 +1427,5 @@
|
1424 |
1427 |
SubGraph<const GR, const NF, EF>
|
1425 |
|
subGraph(const GR& graph,
|
1426 |
|
const NF& node_filter_map, EF& edge_filter_map) {
|
|
1428 |
subGraph(const GR& graph, const NF& node_filter, EF& edge_filter) {
|
1427 |
1429 |
return SubGraph<const GR, const NF, EF>
|
1428 |
|
(graph, node_filter_map, edge_filter_map);
|
|
1430 |
(graph, node_filter, edge_filter);
|
1429 |
1431 |
}
|
... |
... |
@@ -1432,6 +1434,5 @@
|
1432 |
1434 |
SubGraph<const GR, NF, const EF>
|
1433 |
|
subGraph(const GR& graph,
|
1434 |
|
NF& node_filter_map, const EF& edge_filter_map) {
|
|
1435 |
subGraph(const GR& graph, NF& node_filter, const EF& edge_filter) {
|
1435 |
1436 |
return SubGraph<const GR, NF, const EF>
|
1436 |
|
(graph, node_filter_map, edge_filter_map);
|
|
1437 |
(graph, node_filter, edge_filter);
|
1437 |
1438 |
}
|
... |
... |
@@ -1440,6 +1441,5 @@
|
1440 |
1441 |
SubGraph<const GR, const NF, const EF>
|
1441 |
|
subGraph(const GR& graph,
|
1442 |
|
const NF& node_filter_map, const EF& edge_filter_map) {
|
|
1442 |
subGraph(const GR& graph, const NF& node_filter, const EF& edge_filter) {
|
1443 |
1443 |
return SubGraph<const GR, const NF, const EF>
|
1444 |
|
(graph, node_filter_map, edge_filter_map);
|
|
1444 |
(graph, node_filter, edge_filter);
|
1445 |
1445 |
}
|
... |
... |
@@ -1483,3 +1483,4 @@
|
1483 |
1483 |
public DigraphAdaptorExtender<
|
1484 |
|
SubDigraphBase<GR, NF, ConstMap<typename GR::Arc, bool>, true> > {
|
|
1484 |
SubDigraphBase<GR, NF, ConstMap<typename GR::Arc, Const<bool, true> >,
|
|
1485 |
true> > {
|
1485 |
1486 |
#endif
|
... |
... |
@@ -1491,4 +1492,4 @@
|
1491 |
1492 |
typedef DigraphAdaptorExtender<
|
1492 |
|
SubDigraphBase<GR, NF, ConstMap<typename GR::Arc, bool>, true> >
|
1493 |
|
Parent;
|
|
1493 |
SubDigraphBase<GR, NF, ConstMap<typename GR::Arc, Const<bool, true> >,
|
|
1494 |
true> > Parent;
|
1494 |
1495 |
|
... |
... |
@@ -1497,7 +1498,5 @@
|
1497 |
1498 |
protected:
|
1498 |
|
ConstMap<typename Digraph::Arc, bool> const_true_map;
|
1499 |
|
|
1500 |
|
FilterNodes() : const_true_map(true) {
|
1501 |
|
Parent::setArcFilterMap(const_true_map);
|
1502 |
|
}
|
|
1499 |
ConstMap<typename Digraph::Arc, Const<bool, true> > const_true_map;
|
|
1500 |
|
|
1501 |
FilterNodes() : const_true_map() {}
|
1503 |
1502 |
|
... |
... |
@@ -1509,8 +1508,6 @@
|
1509 |
1508 |
/// given node filter map.
|
1510 |
|
FilterNodes(GR& graph, NodeFilterMap& node_filter) :
|
1511 |
|
Parent(), const_true_map(true)
|
|
1509 |
FilterNodes(GR& graph, NF& node_filter)
|
|
1510 |
: Parent(), const_true_map()
|
1512 |
1511 |
{
|
1513 |
|
Parent::setDigraph(graph);
|
1514 |
|
Parent::setNodeFilterMap(node_filter);
|
1515 |
|
Parent::setArcFilterMap(const_true_map);
|
|
1512 |
Parent::initialize(graph, node_filter, const_true_map);
|
1516 |
1513 |
}
|
... |
... |
@@ -1549,3 +1546,4 @@
|
1549 |
1546 |
public GraphAdaptorExtender<
|
1550 |
|
SubGraphBase<GR, NF, ConstMap<typename GR::Edge, bool>, true> > {
|
|
1547 |
SubGraphBase<GR, NF, ConstMap<typename GR::Edge, Const<bool, true> >,
|
|
1548 |
true> > {
|
1551 |
1549 |
|
... |
... |
@@ -1555,4 +1553,4 @@
|
1555 |
1553 |
typedef GraphAdaptorExtender<
|
1556 |
|
SubGraphBase<GR, NF, ConstMap<typename GR::Edge, bool>, true> >
|
1557 |
|
Parent;
|
|
1554 |
SubGraphBase<GR, NF, ConstMap<typename GR::Edge, Const<bool, true> >,
|
|
1555 |
true> > Parent;
|
1558 |
1556 |
|
... |
... |
@@ -1560,7 +1558,5 @@
|
1560 |
1558 |
protected:
|
1561 |
|
ConstMap<typename Graph::Edge, bool> const_true_map;
|
1562 |
|
|
1563 |
|
FilterNodes() : const_true_map(true) {
|
1564 |
|
Parent::setEdgeFilterMap(const_true_map);
|
1565 |
|
}
|
|
1559 |
ConstMap<typename GR::Edge, Const<bool, true> > const_true_map;
|
|
1560 |
|
|
1561 |
FilterNodes() : const_true_map() {}
|
1566 |
1562 |
|
... |
... |
@@ -1568,7 +1564,5 @@
|
1568 |
1564 |
|
1569 |
|
FilterNodes(Graph& _graph, NodeFilterMap& node_filter_map) :
|
1570 |
|
Parent(), const_true_map(true) {
|
1571 |
|
Parent::setGraph(_graph);
|
1572 |
|
Parent::setNodeFilterMap(node_filter_map);
|
1573 |
|
Parent::setEdgeFilterMap(const_true_map);
|
|
1565 |
FilterNodes(GR& graph, NodeFilterMap& node_filter) :
|
|
1566 |
Parent(), const_true_map() {
|
|
1567 |
Parent::initialize(graph, node_filter, const_true_map);
|
1574 |
1568 |
}
|
... |
... |
@@ -1590,4 +1584,4 @@
|
1590 |
1584 |
FilterNodes<const GR, NF>
|
1591 |
|
filterNodes(const GR& graph, NF& node_filter_map) {
|
1592 |
|
return FilterNodes<const GR, NF>(graph, node_filter_map);
|
|
1585 |
filterNodes(const GR& graph, NF& node_filter) {
|
|
1586 |
return FilterNodes<const GR, NF>(graph, node_filter);
|
1593 |
1587 |
}
|
... |
... |
@@ -1596,4 +1590,4 @@
|
1596 |
1590 |
FilterNodes<const GR, const NF>
|
1597 |
|
filterNodes(const GR& graph, const NF& node_filter_map) {
|
1598 |
|
return FilterNodes<const GR, const NF>(graph, node_filter_map);
|
|
1591 |
filterNodes(const GR& graph, const NF& node_filter) {
|
|
1592 |
return FilterNodes<const GR, const NF>(graph, node_filter);
|
1599 |
1593 |
}
|
... |
... |
@@ -1614,3 +1608,3 @@
|
1614 |
1608 |
///
|
1615 |
|
/// \tparam GR The type of the adapted digraph.
|
|
1609 |
/// \tparam DGR The type of the adapted digraph.
|
1616 |
1610 |
/// It must conform to the \ref concepts::Digraph "Digraph" concept.
|
... |
... |
@@ -1620,3 +1614,3 @@
|
1620 |
1614 |
/// adapted digraph. The default type is
|
1621 |
|
/// \ref concepts::Digraph::ArcMap "GR::ArcMap<bool>".
|
|
1615 |
/// \ref concepts::Digraph::ArcMap "DGR::ArcMap<bool>".
|
1622 |
1616 |
///
|
... |
... |
@@ -1625,3 +1619,3 @@
|
1625 |
1619 |
#ifdef DOXYGEN
|
1626 |
|
template<typename GR,
|
|
1620 |
template<typename DGR,
|
1627 |
1621 |
typename AF>
|
... |
... |
@@ -1629,7 +1623,8 @@
|
1629 |
1623 |
#else
|
1630 |
|
template<typename GR,
|
1631 |
|
typename AF = typename GR::template ArcMap<bool> >
|
|
1624 |
template<typename DGR,
|
|
1625 |
typename AF = typename DGR::template ArcMap<bool> >
|
1632 |
1626 |
class FilterArcs :
|
1633 |
1627 |
public DigraphAdaptorExtender<
|
1634 |
|
SubDigraphBase<GR, ConstMap<typename GR::Node, bool>, AF, false> > {
|
|
1628 |
SubDigraphBase<DGR, ConstMap<typename DGR::Node, Const<bool, true> >,
|
|
1629 |
AF, false> > {
|
1635 |
1630 |
#endif
|
... |
... |
@@ -1637,3 +1632,3 @@
|
1637 |
1632 |
/// The type of the adapted digraph.
|
1638 |
|
typedef GR Digraph;
|
|
1633 |
typedef DGR Digraph;
|
1639 |
1634 |
/// The type of the arc filter map.
|
... |
... |
@@ -1642,4 +1637,4 @@
|
1642 |
1637 |
typedef DigraphAdaptorExtender<
|
1643 |
|
SubDigraphBase<GR, ConstMap<typename GR::Node, bool>, AF, false> >
|
1644 |
|
Parent;
|
|
1638 |
SubDigraphBase<DGR, ConstMap<typename DGR::Node, Const<bool, true> >,
|
|
1639 |
AF, false> > Parent;
|
1645 |
1640 |
|
... |
... |
@@ -1648,7 +1643,5 @@
|
1648 |
1643 |
protected:
|
1649 |
|
ConstMap<typename Digraph::Node, bool> const_true_map;
|
1650 |
|
|
1651 |
|
FilterArcs() : const_true_map(true) {
|
1652 |
|
Parent::setNodeFilterMap(const_true_map);
|
1653 |
|
}
|
|
1644 |
ConstMap<typename DGR::Node, Const<bool, true> > const_true_map;
|
|
1645 |
|
|
1646 |
FilterArcs() : const_true_map() {}
|
1654 |
1647 |
|
... |
... |
@@ -1660,7 +1653,5 @@
|
1660 |
1653 |
/// filter map.
|
1661 |
|
FilterArcs(Digraph& digraph, ArcFilterMap& arc_filter)
|
1662 |
|
: Parent(), const_true_map(true) {
|
1663 |
|
Parent::setDigraph(digraph);
|
1664 |
|
Parent::setNodeFilterMap(const_true_map);
|
1665 |
|
Parent::setArcFilterMap(arc_filter);
|
|
1654 |
FilterArcs(DGR& digraph, ArcFilterMap& arc_filter)
|
|
1655 |
: Parent(), const_true_map() {
|
|
1656 |
Parent::initialize(digraph, const_true_map, arc_filter);
|
1666 |
1657 |
}
|
... |
... |
@@ -1700,12 +1691,12 @@
|
1700 |
1691 |
/// \relates FilterArcs
|
1701 |
|
template<typename GR, typename AF>
|
1702 |
|
FilterArcs<const GR, AF>
|
1703 |
|
filterArcs(const GR& digraph, AF& arc_filter_map) {
|
1704 |
|
return FilterArcs<const GR, AF>(digraph, arc_filter_map);
|
|
1692 |
template<typename DGR, typename AF>
|
|
1693 |
FilterArcs<const DGR, AF>
|
|
1694 |
filterArcs(const DGR& digraph, AF& arc_filter) {
|
|
1695 |
return FilterArcs<const DGR, AF>(digraph, arc_filter);
|
1705 |
1696 |
}
|
1706 |
1697 |
|
1707 |
|
template<typename GR, typename AF>
|
1708 |
|
FilterArcs<const GR, const AF>
|
1709 |
|
filterArcs(const GR& digraph, const AF& arc_filter_map) {
|
1710 |
|
return FilterArcs<const GR, const AF>(digraph, arc_filter_map);
|
|
1698 |
template<typename DGR, typename AF>
|
|
1699 |
FilterArcs<const DGR, const AF>
|
|
1700 |
filterArcs(const DGR& digraph, const AF& arc_filter) {
|
|
1701 |
return FilterArcs<const DGR, const AF>(digraph, arc_filter);
|
1711 |
1702 |
}
|
... |
... |
@@ -1745,3 +1736,4 @@
|
1745 |
1736 |
public GraphAdaptorExtender<
|
1746 |
|
SubGraphBase<GR, ConstMap<typename GR::Node,bool>, EF, false> > {
|
|
1737 |
SubGraphBase<GR, ConstMap<typename GR::Node, Const<bool, true> >,
|
|
1738 |
EF, false> > {
|
1747 |
1739 |
#endif
|
... |
... |
@@ -1754,4 +1746,4 @@
|
1754 |
1746 |
typedef GraphAdaptorExtender<
|
1755 |
|
SubGraphBase<GR, ConstMap<typename GR::Node,bool>, EF, false> >
|
1756 |
|
Parent;
|
|
1747 |
SubGraphBase<GR, ConstMap<typename GR::Node, Const<bool, true > >,
|
|
1748 |
EF, false> > Parent;
|
1757 |
1749 |
|
... |
... |
@@ -1760,3 +1752,3 @@
|
1760 |
1752 |
protected:
|
1761 |
|
ConstMap<typename Graph::Node, bool> const_true_map;
|
|
1753 |
ConstMap<typename GR::Node, Const<bool, true> > const_true_map;
|
1762 |
1754 |
|
... |
... |
@@ -1772,7 +1764,5 @@
|
1772 |
1764 |
/// filter map.
|
1773 |
|
FilterEdges(Graph& graph, EdgeFilterMap& edge_filter_map) :
|
1774 |
|
Parent(), const_true_map(true) {
|
1775 |
|
Parent::setGraph(graph);
|
1776 |
|
Parent::setNodeFilterMap(const_true_map);
|
1777 |
|
Parent::setEdgeFilterMap(edge_filter_map);
|
|
1765 |
FilterEdges(GR& graph, EF& edge_filter)
|
|
1766 |
: Parent(), const_true_map() {
|
|
1767 |
Parent::initialize(graph, const_true_map, edge_filter);
|
1778 |
1768 |
}
|
... |
... |
@@ -1814,4 +1804,4 @@
|
1814 |
1804 |
FilterEdges<const GR, EF>
|
1815 |
|
filterEdges(const GR& graph, EF& edge_filter_map) {
|
1816 |
|
return FilterEdges<const GR, EF>(graph, edge_filter_map);
|
|
1805 |
filterEdges(const GR& graph, EF& edge_filter) {
|
|
1806 |
return FilterEdges<const GR, EF>(graph, edge_filter);
|
1817 |
1807 |
}
|
... |
... |
@@ -1820,4 +1810,4 @@
|
1820 |
1810 |
FilterEdges<const GR, const EF>
|
1821 |
|
filterEdges(const GR& graph, const EF& edge_filter_map) {
|
1822 |
|
return FilterEdges<const GR, const EF>(graph, edge_filter_map);
|
|
1811 |
filterEdges(const GR& graph, const EF& edge_filter) {
|
|
1812 |
return FilterEdges<const GR, const EF>(graph, edge_filter);
|
1823 |
1813 |
}
|
... |
... |
@@ -1825,6 +1815,6 @@
|
1825 |
1815 |
|
1826 |
|
template <typename _Digraph>
|
|
1816 |
template <typename DGR>
|
1827 |
1817 |
class UndirectorBase {
|
1828 |
1818 |
public:
|
1829 |
|
typedef _Digraph Digraph;
|
|
1819 |
typedef DGR Digraph;
|
1830 |
1820 |
typedef UndirectorBase Adaptor;
|
... |
... |
@@ -2064,3 +2054,3 @@
|
2064 |
2054 |
|
2065 |
|
template <typename _Value>
|
|
2055 |
template <typename V>
|
2066 |
2056 |
class ArcMapBase {
|
... |
... |
@@ -2068,3 +2058,3 @@
|
2068 |
2058 |
|
2069 |
|
typedef typename Digraph::template ArcMap<_Value> MapImpl;
|
|
2059 |
typedef typename DGR::template ArcMap<V> MapImpl;
|
2070 |
2060 |
|
... |
... |
@@ -2074,3 +2064,3 @@
|
2074 |
2064 |
|
2075 |
|
typedef _Value Value;
|
|
2065 |
typedef V Value;
|
2076 |
2066 |
typedef Arc Key;
|
... |
... |
@@ -2081,13 +2071,14 @@
|
2081 |
2071 |
|
2082 |
|
ArcMapBase(const Adaptor& adaptor) :
|
|
2072 |
ArcMapBase(const UndirectorBase<DGR>& adaptor) :
|
2083 |
2073 |
_forward(*adaptor._digraph), _backward(*adaptor._digraph) {}
|
2084 |
2074 |
|
2085 |
|
ArcMapBase(const Adaptor& adaptor, const Value& v)
|
2086 |
|
: _forward(*adaptor._digraph, v), _backward(*adaptor._digraph, v) {}
|
2087 |
|
|
2088 |
|
void set(const Arc& a, const Value& v) {
|
|
2075 |
ArcMapBase(const UndirectorBase<DGR>& adaptor, const V& value)
|
|
2076 |
: _forward(*adaptor._digraph, value),
|
|
2077 |
_backward(*adaptor._digraph, value) {}
|
|
2078 |
|
|
2079 |
void set(const Arc& a, const V& value) {
|
2089 |
2080 |
if (direction(a)) {
|
2090 |
|
_forward.set(a, v);
|
|
2081 |
_forward.set(a, value);
|
2091 |
2082 |
} else {
|
2092 |
|
_backward.set(a, v);
|
|
2083 |
_backward.set(a, value);
|
2093 |
2084 |
}
|
... |
... |
@@ -2119,13 +2110,13 @@
|
2119 |
2110 |
|
2120 |
|
template <typename _Value>
|
2121 |
|
class NodeMap : public Digraph::template NodeMap<_Value> {
|
|
2111 |
template <typename V>
|
|
2112 |
class NodeMap : public DGR::template NodeMap<V> {
|
2122 |
2113 |
public:
|
2123 |
2114 |
|
2124 |
|
typedef _Value Value;
|
2125 |
|
typedef typename Digraph::template NodeMap<Value> Parent;
|
2126 |
|
|
2127 |
|
explicit NodeMap(const Adaptor& adaptor)
|
|
2115 |
typedef V Value;
|
|
2116 |
typedef typename DGR::template NodeMap<Value> Parent;
|
|
2117 |
|
|
2118 |
explicit NodeMap(const UndirectorBase<DGR>& adaptor)
|
2128 |
2119 |
: Parent(*adaptor._digraph) {}
|
2129 |
2120 |
|
2130 |
|
NodeMap(const Adaptor& adaptor, const _Value& value)
|
|
2121 |
NodeMap(const UndirectorBase<DGR>& adaptor, const V& value)
|
2131 |
2122 |
: Parent(*adaptor._digraph, value) { }
|
... |
... |
@@ -2145,14 +2136,14 @@
|
2145 |
2136 |
|
2146 |
|
template <typename _Value>
|
|
2137 |
template <typename V>
|
2147 |
2138 |
class ArcMap
|
2148 |
|
: public SubMapExtender<Adaptor, ArcMapBase<_Value> >
|
|
2139 |
: public SubMapExtender<UndirectorBase<DGR>, ArcMapBase<V> >
|
2149 |
2140 |
{
|
2150 |
2141 |
public:
|
2151 |
|
typedef _Value Value;
|
2152 |
|
typedef SubMapExtender<Adaptor, ArcMapBase<Value> > Parent;
|
2153 |
|
|
2154 |
|
explicit ArcMap(const Adaptor& adaptor)
|
|
2142 |
typedef V Value;
|
|
2143 |
typedef SubMapExtender<Adaptor, ArcMapBase<V> > Parent;
|
|
2144 |
|
|
2145 |
explicit ArcMap(const UndirectorBase<DGR>& adaptor)
|
2155 |
2146 |
: Parent(adaptor) {}
|
2156 |
2147 |
|
2157 |
|
ArcMap(const Adaptor& adaptor, const Value& value)
|
|
2148 |
ArcMap(const UndirectorBase<DGR>& adaptor, const V& value)
|
2158 |
2149 |
: Parent(adaptor, value) {}
|
... |
... |
@@ -2171,13 +2162,13 @@
|
2171 |
2162 |
|
2172 |
|
template <typename _Value>
|
2173 |
|
class EdgeMap : public Digraph::template ArcMap<_Value> {
|
|
2163 |
template <typename V>
|
|
2164 |
class EdgeMap : public Digraph::template ArcMap<V> {
|
2174 |
2165 |
public:
|
2175 |
2166 |
|
2176 |
|
typedef _Value Value;
|
2177 |
|
typedef typename Digraph::template ArcMap<Value> Parent;
|
2178 |
|
|
2179 |
|
explicit EdgeMap(const Adaptor& adaptor)
|
|
2167 |
typedef V Value;
|
|
2168 |
typedef typename Digraph::template ArcMap<V> Parent;
|
|
2169 |
|
|
2170 |
explicit EdgeMap(const UndirectorBase<DGR>& adaptor)
|
2180 |
2171 |
: Parent(*adaptor._digraph) {}
|
2181 |
2172 |
|
2182 |
|
EdgeMap(const Adaptor& adaptor, const Value& value)
|
|
2173 |
EdgeMap(const UndirectorBase<DGR>& adaptor, const V& value)
|
2183 |
2174 |
: Parent(*adaptor._digraph, value) {}
|
... |
... |
@@ -2197,6 +2188,6 @@
|
2197 |
2188 |
|
2198 |
|
typedef typename ItemSetTraits<Digraph, Node>::ItemNotifier NodeNotifier;
|
|
2189 |
typedef typename ItemSetTraits<DGR, Node>::ItemNotifier NodeNotifier;
|
2199 |
2190 |
NodeNotifier& notifier(Node) const { return _digraph->notifier(Node()); }
|
2200 |
2191 |
|
2201 |
|
typedef typename ItemSetTraits<Digraph, Edge>::ItemNotifier EdgeNotifier;
|
|
2192 |
typedef typename ItemSetTraits<DGR, Edge>::ItemNotifier EdgeNotifier;
|
2202 |
2193 |
EdgeNotifier& notifier(Edge) const { return _digraph->notifier(Edge()); }
|
... |
... |
@@ -2207,5 +2198,5 @@
|
2207 |
2198 |
|
2208 |
|
Digraph* _digraph;
|
2209 |
|
|
2210 |
|
void setDigraph(Digraph& digraph) {
|
|
2199 |
DGR* _digraph;
|
|
2200 |
|
|
2201 |
void initialize(DGR& digraph) {
|
2211 |
2202 |
_digraph = &digraph;
|
... |
... |
@@ -2228,3 +2219,3 @@
|
2228 |
2219 |
///
|
2229 |
|
/// \tparam GR The type of the adapted digraph.
|
|
2220 |
/// \tparam DGR The type of the adapted digraph.
|
2230 |
2221 |
/// It must conform to the \ref concepts::Digraph "Digraph" concept.
|
... |
... |
@@ -2238,3 +2229,3 @@
|
2238 |
2229 |
/// of the adapted digraph.)
|
2239 |
|
template<typename GR>
|
|
2230 |
template<typename DGR>
|
2240 |
2231 |
#ifdef DOXYGEN
|
... |
... |
@@ -2243,3 +2234,3 @@
|
2243 |
2234 |
class Undirector :
|
2244 |
|
public GraphAdaptorExtender<UndirectorBase<GR> > {
|
|
2235 |
public GraphAdaptorExtender<UndirectorBase<DGR> > {
|
2245 |
2236 |
#endif
|
... |
... |
@@ -2247,4 +2238,4 @@
|
2247 |
2238 |
/// The type of the adapted digraph.
|
2248 |
|
typedef GR Digraph;
|
2249 |
|
typedef GraphAdaptorExtender<UndirectorBase<GR> > Parent;
|
|
2239 |
typedef DGR Digraph;
|
|
2240 |
typedef GraphAdaptorExtender<UndirectorBase<DGR> > Parent;
|
2250 |
2241 |
protected:
|
... |
... |
@@ -2256,4 +2247,4 @@
|
2256 |
2247 |
/// Creates an undirected graph from the given digraph.
|
2257 |
|
Undirector(Digraph& digraph) {
|
2258 |
|
setDigraph(digraph);
|
|
2248 |
Undirector(DGR& digraph) {
|
|
2249 |
initialize(digraph);
|
2259 |
2250 |
}
|
... |
... |
@@ -2357,5 +2348,5 @@
|
2357 |
2348 |
/// \relates Undirector
|
2358 |
|
template<typename GR>
|
2359 |
|
Undirector<const GR> undirector(const GR& digraph) {
|
2360 |
|
return Undirector<const GR>(digraph);
|
|
2349 |
template<typename DGR>
|
|
2350 |
Undirector<const DGR> undirector(const DGR& digraph) {
|
|
2351 |
return Undirector<const DGR>(digraph);
|
2361 |
2352 |
}
|
... |
... |
@@ -2363,3 +2354,3 @@
|
2363 |
2354 |
|
2364 |
|
template <typename _Graph, typename _DirectionMap>
|
|
2355 |
template <typename GR, typename DM>
|
2365 |
2356 |
class OrienterBase {
|
... |
... |
@@ -2367,7 +2358,7 @@
|
2367 |
2358 |
|
2368 |
|
typedef _Graph Graph;
|
2369 |
|
typedef _DirectionMap DirectionMap;
|
2370 |
|
|
2371 |
|
typedef typename Graph::Node Node;
|
2372 |
|
typedef typename Graph::Edge Arc;
|
|
2359 |
typedef GR Graph;
|
|
2360 |
typedef DM DirectionMap;
|
|
2361 |
|
|
2362 |
typedef typename GR::Node Node;
|
|
2363 |
typedef typename GR::Edge Arc;
|
2373 |
2364 |
|
... |
... |
@@ -2450,18 +2441,18 @@
|
2450 |
2441 |
|
2451 |
|
typedef typename ItemSetTraits<Graph, Node>::ItemNotifier NodeNotifier;
|
|
2442 |
typedef typename ItemSetTraits<GR, Node>::ItemNotifier NodeNotifier;
|
2452 |
2443 |
NodeNotifier& notifier(Node) const { return _graph->notifier(Node()); }
|
2453 |
2444 |
|
2454 |
|
typedef typename ItemSetTraits<Graph, Arc>::ItemNotifier ArcNotifier;
|
|
2445 |
typedef typename ItemSetTraits<GR, Arc>::ItemNotifier ArcNotifier;
|
2455 |
2446 |
ArcNotifier& notifier(Arc) const { return _graph->notifier(Arc()); }
|
2456 |
2447 |
|
2457 |
|
template <typename _Value>
|
2458 |
|
class NodeMap : public _Graph::template NodeMap<_Value> {
|
|
2448 |
template <typename V>
|
|
2449 |
class NodeMap : public GR::template NodeMap<V> {
|
2459 |
2450 |
public:
|
2460 |
2451 |
|
2461 |
|
typedef typename _Graph::template NodeMap<_Value> Parent;
|
2462 |
|
|
2463 |
|
explicit NodeMap(const OrienterBase& adapter)
|
|
2452 |
typedef typename GR::template NodeMap<V> Parent;
|
|
2453 |
|
|
2454 |
explicit NodeMap(const OrienterBase<GR, DM>& adapter)
|
2464 |
2455 |
: Parent(*adapter._graph) {}
|
2465 |
2456 |
|
2466 |
|
NodeMap(const OrienterBase& adapter, const _Value& value)
|
|
2457 |
NodeMap(const OrienterBase<GR, DM>& adapter, const V& value)
|
2467 |
2458 |
: Parent(*adapter._graph, value) {}
|
... |
... |
@@ -2481,12 +2472,12 @@
|
2481 |
2472 |
|
2482 |
|
template <typename _Value>
|
2483 |
|
class ArcMap : public _Graph::template EdgeMap<_Value> {
|
|
2473 |
template <typename V>
|
|
2474 |
class ArcMap : public GR::template EdgeMap<V> {
|
2484 |
2475 |
public:
|
2485 |
2476 |
|
2486 |
|
typedef typename Graph::template EdgeMap<_Value> Parent;
|
2487 |
|
|
2488 |
|
explicit ArcMap(const OrienterBase& adapter)
|
|
2477 |
typedef typename Graph::template EdgeMap<V> Parent;
|
|
2478 |
|
|
2479 |
explicit ArcMap(const OrienterBase<GR, DM>& adapter)
|
2489 |
2480 |
: Parent(*adapter._graph) { }
|
2490 |
2481 |
|
2491 |
|
ArcMap(const OrienterBase& adapter, const _Value& value)
|
|
2482 |
ArcMap(const OrienterBase<GR, DM>& adapter, const V& value)
|
2492 |
2483 |
: Parent(*adapter._graph, value) { }
|
... |
... |
@@ -2509,5 +2500,6 @@
|
2509 |
2500 |
Graph* _graph;
|
2510 |
|
DirectionMap* _direction;
|
2511 |
|
|
2512 |
|
void setDirectionMap(DirectionMap& direction) {
|
|
2501 |
DM* _direction;
|
|
2502 |
|
|
2503 |
void initialize(GR& graph, DM& direction) {
|
|
2504 |
_graph = &graph;
|
2513 |
2505 |
_direction = &direction;
|
... |
... |
@@ -2515,6 +2507,2 @@
|
2515 |
2507 |
|
2516 |
|
void setGraph(Graph& graph) {
|
2517 |
|
_graph = &graph;
|
2518 |
|
}
|
2519 |
|
|
2520 |
2508 |
};
|
... |
... |
@@ -2574,5 +2562,4 @@
|
2574 |
2562 |
/// Constructor of the adaptor.
|
2575 |
|
Orienter(Graph& graph, DirectionMap& direction) {
|
2576 |
|
setGraph(graph);
|
2577 |
|
setDirectionMap(direction);
|
|
2563 |
Orienter(GR& graph, DM& direction) {
|
|
2564 |
Parent::initialize(graph, direction);
|
2578 |
2565 |
}
|
... |
... |
@@ -2596,4 +2583,4 @@
|
2596 |
2583 |
Orienter<const GR, DM>
|
2597 |
|
orienter(const GR& graph, DM& direction_map) {
|
2598 |
|
return Orienter<const GR, DM>(graph, direction_map);
|
|
2584 |
orienter(const GR& graph, DM& direction) {
|
|
2585 |
return Orienter<const GR, DM>(graph, direction);
|
2599 |
2586 |
}
|
... |
... |
@@ -2602,4 +2589,4 @@
|
2602 |
2589 |
Orienter<const GR, const DM>
|
2603 |
|
orienter(const GR& graph, const DM& direction_map) {
|
2604 |
|
return Orienter<const GR, const DM>(graph, direction_map);
|
|
2590 |
orienter(const GR& graph, const DM& direction) {
|
|
2591 |
return Orienter<const GR, const DM>(graph, direction);
|
2605 |
2592 |
}
|
... |
... |
@@ -2608,6 +2595,3 @@
|
2608 |
2595 |
|
2609 |
|
template<typename Digraph,
|
2610 |
|
typename CapacityMap,
|
2611 |
|
typename FlowMap,
|
2612 |
|
typename Tolerance>
|
|
2596 |
template <typename DGR, typename CM, typename FM, typename TL>
|
2613 |
2597 |
class ResForwardFilter {
|
... |
... |
@@ -2615,3 +2599,3 @@
|
2615 |
2599 |
|
2616 |
|
typedef typename Digraph::Arc Key;
|
|
2600 |
typedef typename DGR::Arc Key;
|
2617 |
2601 |
typedef bool Value;
|
... |
... |
@@ -2620,12 +2604,13 @@
|
2620 |
2604 |
|
2621 |
|
const CapacityMap* _capacity;
|
2622 |
|
const FlowMap* _flow;
|
2623 |
|
Tolerance _tolerance;
|
|
2605 |
const CM* _capacity;
|
|
2606 |
const FM* _flow;
|
|
2607 |
TL _tolerance;
|
|
2608 |
|
2624 |
2609 |
public:
|
2625 |
2610 |
|
2626 |
|
ResForwardFilter(const CapacityMap& capacity, const FlowMap& flow,
|
2627 |
|
const Tolerance& tolerance = Tolerance())
|
|
2611 |
ResForwardFilter(const CM& capacity, const FM& flow,
|
|
2612 |
const TL& tolerance = TL())
|
2628 |
2613 |
: _capacity(&capacity), _flow(&flow), _tolerance(tolerance) { }
|
2629 |
2614 |
|
2630 |
|
bool operator[](const typename Digraph::Arc& a) const {
|
|
2615 |
bool operator[](const typename DGR::Arc& a) const {
|
2631 |
2616 |
return _tolerance.positive((*_capacity)[a] - (*_flow)[a]);
|
... |
... |
@@ -2634,6 +2619,3 @@
|
2634 |
2619 |
|
2635 |
|
template<typename Digraph,
|
2636 |
|
typename CapacityMap,
|
2637 |
|
typename FlowMap,
|
2638 |
|
typename Tolerance>
|
|
2620 |
template<typename DGR,typename CM, typename FM, typename TL>
|
2639 |
2621 |
class ResBackwardFilter {
|
... |
... |
@@ -2641,3 +2623,3 @@
|
2641 |
2623 |
|
2642 |
|
typedef typename Digraph::Arc Key;
|
|
2624 |
typedef typename DGR::Arc Key;
|
2643 |
2625 |
typedef bool Value;
|
... |
... |
@@ -2646,5 +2628,5 @@
|
2646 |
2628 |
|
2647 |
|
const CapacityMap* _capacity;
|
2648 |
|
const FlowMap* _flow;
|
2649 |
|
Tolerance _tolerance;
|
|
2629 |
const CM* _capacity;
|
|
2630 |
const FM* _flow;
|
|
2631 |
TL _tolerance;
|
2650 |
2632 |
|
... |
... |
@@ -2652,7 +2634,7 @@
|
2652 |
2634 |
|
2653 |
|
ResBackwardFilter(const CapacityMap& capacity, const FlowMap& flow,
|
2654 |
|
const Tolerance& tolerance = Tolerance())
|
|
2635 |
ResBackwardFilter(const CM& capacity, const FM& flow,
|
|
2636 |
const TL& tolerance = TL())
|
2655 |
2637 |
: _capacity(&capacity), _flow(&flow), _tolerance(tolerance) { }
|
2656 |
2638 |
|
2657 |
|
bool operator[](const typename Digraph::Arc& a) const {
|
|
2639 |
bool operator[](const typename DGR::Arc& a) const {
|
2658 |
2640 |
return _tolerance.positive((*_flow)[a]);
|
... |
... |
@@ -2683,3 +2665,3 @@
|
2683 |
2665 |
///
|
2684 |
|
/// \tparam GR The type of the adapted digraph.
|
|
2666 |
/// \tparam DGR The type of the adapted digraph.
|
2685 |
2667 |
/// It must conform to the \ref concepts::Digraph "Digraph" concept.
|
... |
... |
@@ -2705,15 +2687,16 @@
|
2705 |
2687 |
#ifdef DOXYGEN
|
2706 |
|
template<typename GR, typename CM, typename FM, typename TL>
|
|
2688 |
template<typename DGR, typename CM, typename FM, typename TL>
|
2707 |
2689 |
class ResidualDigraph
|
2708 |
2690 |
#else
|
2709 |
|
template<typename GR,
|
2710 |
|
typename CM = typename GR::template ArcMap<int>,
|
|
2691 |
template<typename DGR,
|
|
2692 |
typename CM = typename DGR::template ArcMap<int>,
|
2711 |
2693 |
typename FM = CM,
|
2712 |
2694 |
typename TL = Tolerance<typename CM::Value> >
|
2713 |
|
class ResidualDigraph :
|
2714 |
|
public FilterArcs<
|
2715 |
|
Undirector<const GR>,
|
2716 |
|
typename Undirector<const GR>::template CombinedArcMap<
|
2717 |
|
_adaptor_bits::ResForwardFilter<const GR, CM, FM, TL>,
|
2718 |
|
_adaptor_bits::ResBackwardFilter<const GR, CM, FM, TL> > >
|
|
2695 |
class ResidualDigraph
|
|
2696 |
: public SubDigraph<
|
|
2697 |
Undirector<const DGR>,
|
|
2698 |
ConstMap<typename DGR::Node, Const<bool, true> >,
|
|
2699 |
typename Undirector<const DGR>::template CombinedArcMap<
|
|
2700 |
_adaptor_bits::ResForwardFilter<const DGR, CM, FM, TL>,
|
|
2701 |
_adaptor_bits::ResBackwardFilter<const DGR, CM, FM, TL> > >
|
2719 |
2702 |
#endif
|
... |
... |
@@ -2723,3 +2706,3 @@
|
2723 |
2706 |
/// The type of the underlying digraph.
|
2724 |
|
typedef GR Digraph;
|
|
2707 |
typedef DGR Digraph;
|
2725 |
2708 |
/// The type of the capacity map.
|
... |
... |
@@ -2738,7 +2721,9 @@
|
2738 |
2721 |
|
2739 |
|
typedef _adaptor_bits::ResForwardFilter<const Digraph, CapacityMap,
|
2740 |
|
FlowMap, Tolerance> ForwardFilter;
|
2741 |
|
|
2742 |
|
typedef _adaptor_bits::ResBackwardFilter<const Digraph, CapacityMap,
|
2743 |
|
FlowMap, Tolerance> BackwardFilter;
|
|
2722 |
typedef ConstMap<typename DGR::Node, Const<bool, true> > NodeFilter;
|
|
2723 |
|
|
2724 |
typedef _adaptor_bits::ResForwardFilter<const DGR, CM,
|
|
2725 |
FM, TL> ForwardFilter;
|
|
2726 |
|
|
2727 |
typedef _adaptor_bits::ResBackwardFilter<const DGR, CM,
|
|
2728 |
FM, TL> BackwardFilter;
|
2744 |
2729 |
|
... |
... |
@@ -2747,3 +2732,3 @@
|
2747 |
2732 |
|
2748 |
|
typedef FilterArcs<Undirected, ArcFilter> Parent;
|
|
2733 |
typedef SubDigraph<Undirected, NodeFilter, ArcFilter> Parent;
|
2749 |
2734 |
|
... |
... |
@@ -2753,2 +2738,3 @@
|
2753 |
2738 |
Undirected _graph;
|
|
2739 |
NodeFilter _node_filter;
|
2754 |
2740 |
ForwardFilter _forward_filter;
|
... |
... |
@@ -2763,5 +2749,6 @@
|
2763 |
2749 |
/// digraph, the capacity map, the flow map, and a tolerance object.
|
2764 |
|
ResidualDigraph(const Digraph& digraph, const CapacityMap& capacity,
|
2765 |
|
FlowMap& flow, const Tolerance& tolerance = Tolerance())
|
2766 |
|
: Parent(), _capacity(&capacity), _flow(&flow), _graph(digraph),
|
|
2750 |
ResidualDigraph(const DGR& digraph, const CM& capacity,
|
|
2751 |
FM& flow, const TL& tolerance = Tolerance())
|
|
2752 |
: Parent(), _capacity(&capacity), _flow(&flow),
|
|
2753 |
_graph(digraph), _node_filter(),
|
2767 |
2754 |
_forward_filter(capacity, flow, tolerance),
|
... |
... |
@@ -2770,4 +2757,3 @@
|
2770 |
2757 |
{
|
2771 |
|
Parent::setDigraph(_graph);
|
2772 |
|
Parent::setArcFilterMap(_arc_filter);
|
|
2758 |
Parent::initialize(_graph, _node_filter, _arc_filter);
|
2773 |
2759 |
}
|
... |
... |
@@ -2847,3 +2833,4 @@
|
2847 |
2833 |
/// Constructor
|
2848 |
|
ResidualCapacity(const Adaptor& adaptor) : _adaptor(&adaptor) {}
|
|
2834 |
ResidualCapacity(const ResidualDigraph<DGR, CM, FM, TL>& adaptor)
|
|
2835 |
: _adaptor(&adaptor) {}
|
2849 |
2836 |
|
... |
... |
@@ -2867,9 +2854,9 @@
|
2867 |
2854 |
///
|
2868 |
|
/// This function just returns a (read-only) \ref Residual adaptor.
|
|
2855 |
/// This function just returns a (read-only) \ref ResidualDigraph adaptor.
|
2869 |
2856 |
/// \ingroup graph_adaptors
|
2870 |
|
/// \relates Residual
|
2871 |
|
template<typename GR, typename CM, typename FM>
|
2872 |
|
ResidualDigraph<GR, CM, FM>
|
2873 |
|
residualDigraph(const GR& digraph, const CM& capacity_map, FM& flow_map) {
|
2874 |
|
return ResidualDigraph<GR, CM, FM> (digraph, capacity_map, flow_map);
|
|
2857 |
/// \relates ResidualDigraph
|
|
2858 |
template<typename DGR, typename CM, typename FM>
|
|
2859 |
ResidualDigraph<DGR, CM, FM>
|
|
2860 |
residualDigraph(const DGR& digraph, const CM& capacity_map, FM& flow_map) {
|
|
2861 |
return ResidualDigraph<DGR, CM, FM> (digraph, capacity_map, flow_map);
|
2875 |
2862 |
}
|
... |
... |
@@ -2877,3 +2864,3 @@
|
2877 |
2864 |
|
2878 |
|
template <typename _Digraph>
|
|
2865 |
template <typename DGR>
|
2879 |
2866 |
class SplitNodesBase {
|
... |
... |
@@ -2881,8 +2868,8 @@
|
2881 |
2868 |
|
2882 |
|
typedef _Digraph Digraph;
|
2883 |
|
typedef DigraphAdaptorBase<const _Digraph> Parent;
|
|
2869 |
typedef DGR Digraph;
|
|
2870 |
typedef DigraphAdaptorBase<const DGR> Parent;
|
2884 |
2871 |
typedef SplitNodesBase Adaptor;
|
2885 |
2872 |
|
2886 |
|
typedef typename Digraph::Node DigraphNode;
|
2887 |
|
typedef typename Digraph::Arc DigraphArc;
|
|
2873 |
typedef typename DGR::Node DigraphNode;
|
|
2874 |
typedef typename DGR::Arc DigraphArc;
|
2888 |
2875 |
|
... |
... |
@@ -3150,9 +3137,9 @@
|
3150 |
3137 |
|
3151 |
|
template <typename _Value>
|
|
3138 |
template <typename V>
|
3152 |
3139 |
class NodeMapBase
|
3153 |
|
: public MapTraits<typename Parent::template NodeMap<_Value> > {
|
3154 |
|
typedef typename Parent::template NodeMap<_Value> NodeImpl;
|
|
3140 |
: public MapTraits<typename Parent::template NodeMap<V> > {
|
|
3141 |
typedef typename Parent::template NodeMap<V> NodeImpl;
|
3155 |
3142 |
public:
|
3156 |
3143 |
typedef Node Key;
|
3157 |
|
typedef _Value Value;
|
|
3144 |
typedef V Value;
|
3158 |
3145 |
typedef typename MapTraits<NodeImpl>::ReferenceMapTag ReferenceMapTag;
|
... |
... |
@@ -3163,5 +3150,5 @@
|
3163 |
3150 |
|
3164 |
|
NodeMapBase(const Adaptor& adaptor)
|
|
3151 |
NodeMapBase(const SplitNodesBase<DGR>& adaptor)
|
3165 |
3152 |
: _in_map(*adaptor._digraph), _out_map(*adaptor._digraph) {}
|
3166 |
|
NodeMapBase(const Adaptor& adaptor, const Value& value)
|
|
3153 |
NodeMapBase(const SplitNodesBase<DGR>& adaptor, const V& value)
|
3167 |
3154 |
: _in_map(*adaptor._digraph, value),
|
... |
... |
@@ -3169,4 +3156,4 @@
|
3169 |
3156 |
|
3170 |
|
void set(const Node& key, const Value& val) {
|
3171 |
|
if (Adaptor::inNode(key)) { _in_map.set(key, val); }
|
|
3157 |
void set(const Node& key, const V& val) {
|
|
3158 |
if (SplitNodesBase<DGR>::inNode(key)) { _in_map.set(key, val); }
|
3172 |
3159 |
else {_out_map.set(key, val); }
|
... |
... |
@@ -3175,3 +3162,3 @@
|
3175 |
3162 |
ReturnValue operator[](const Node& key) {
|
3176 |
|
if (Adaptor::inNode(key)) { return _in_map[key]; }
|
|
3163 |
if (SplitNodesBase<DGR>::inNode(key)) { return _in_map[key]; }
|
3177 |
3164 |
else { return _out_map[key]; }
|
... |
... |
@@ -3188,10 +3175,10 @@
|
3188 |
3175 |
|
3189 |
|
template <typename _Value>
|
|
3176 |
template <typename V>
|
3190 |
3177 |
class ArcMapBase
|
3191 |
|
: public MapTraits<typename Parent::template ArcMap<_Value> > {
|
3192 |
|
typedef typename Parent::template ArcMap<_Value> ArcImpl;
|
3193 |
|
typedef typename Parent::template NodeMap<_Value> NodeImpl;
|
|
3178 |
: public MapTraits<typename Parent::template ArcMap<V> > {
|
|
3179 |
typedef typename Parent::template ArcMap<V> ArcImpl;
|
|
3180 |
typedef typename Parent::template NodeMap<V> NodeImpl;
|
3194 |
3181 |
public:
|
3195 |
3182 |
typedef Arc Key;
|
3196 |
|
typedef _Value Value;
|
|
3183 |
typedef V Value;
|
3197 |
3184 |
typedef typename MapTraits<ArcImpl>::ReferenceMapTag ReferenceMapTag;
|
... |
... |
@@ -3202,5 +3189,5 @@
|
3202 |
3189 |
|
3203 |
|
ArcMapBase(const Adaptor& adaptor)
|
|
3190 |
ArcMapBase(const SplitNodesBase<DGR>& adaptor)
|
3204 |
3191 |
: _arc_map(*adaptor._digraph), _node_map(*adaptor._digraph) {}
|
3205 |
|
ArcMapBase(const Adaptor& adaptor, const Value& value)
|
|
3192 |
ArcMapBase(const SplitNodesBase<DGR>& adaptor, const V& value)
|
3206 |
3193 |
: _arc_map(*adaptor._digraph, value),
|
... |
... |
@@ -3208,4 +3195,4 @@
|
3208 |
3195 |
|
3209 |
|
void set(const Arc& key, const Value& val) {
|
3210 |
|
if (Adaptor::origArc(key)) {
|
|
3196 |
void set(const Arc& key, const V& val) {
|
|
3197 |
if (SplitNodesBase<DGR>::origArc(key)) {
|
3211 |
3198 |
_arc_map.set(key._item.first(), val);
|
... |
... |
@@ -3217,3 +3204,3 @@
|
3217 |
3204 |
ReturnValue operator[](const Arc& key) {
|
3218 |
|
if (Adaptor::origArc(key)) {
|
|
3205 |
if (SplitNodesBase<DGR>::origArc(key)) {
|
3219 |
3206 |
return _arc_map[key._item.first()];
|
... |
... |
@@ -3225,3 +3212,3 @@
|
3225 |
3212 |
ConstReturnValue operator[](const Arc& key) const {
|
3226 |
|
if (Adaptor::origArc(key)) {
|
|
3213 |
if (SplitNodesBase<DGR>::origArc(key)) {
|
3227 |
3214 |
return _arc_map[key._item.first()];
|
... |
... |
@@ -3239,14 +3226,14 @@
|
3239 |
3226 |
|
3240 |
|
template <typename _Value>
|
|
3227 |
template <typename V>
|
3241 |
3228 |
class NodeMap
|
3242 |
|
: public SubMapExtender<Adaptor, NodeMapBase<_Value> >
|
|
3229 |
: public SubMapExtender<SplitNodesBase<DGR>, NodeMapBase<V> >
|
3243 |
3230 |
{
|
3244 |
3231 |
public:
|
3245 |
|
typedef _Value Value;
|
3246 |
|
typedef SubMapExtender<Adaptor, NodeMapBase<Value> > Parent;
|
3247 |
|
|
3248 |
|
NodeMap(const Adaptor& adaptor)
|
|
3232 |
typedef V Value;
|
|
3233 |
typedef SubMapExtender<SplitNodesBase<DGR>, NodeMapBase<Value> > Parent;
|
|
3234 |
|
|
3235 |
NodeMap(const SplitNodesBase<DGR>& adaptor)
|
3249 |
3236 |
: Parent(adaptor) {}
|
3250 |
3237 |
|
3251 |
|
NodeMap(const Adaptor& adaptor, const Value& value)
|
|
3238 |
NodeMap(const SplitNodesBase<DGR>& adaptor, const V& value)
|
3252 |
3239 |
: Parent(adaptor, value) {}
|
... |
... |
@@ -3265,14 +3252,14 @@
|
3265 |
3252 |
|
3266 |
|
template <typename _Value>
|
|
3253 |
template <typename V>
|
3267 |
3254 |
class ArcMap
|
3268 |
|
: public SubMapExtender<Adaptor, ArcMapBase<_Value> >
|
|
3255 |
: public SubMapExtender<SplitNodesBase<DGR>, ArcMapBase<V> >
|
3269 |
3256 |
{
|
3270 |
3257 |
public:
|
3271 |
|
typedef _Value Value;
|
3272 |
|
typedef SubMapExtender<Adaptor, ArcMapBase<Value> > Parent;
|
3273 |
|
|
3274 |
|
ArcMap(const Adaptor& adaptor)
|
|
3258 |
typedef V Value;
|
|
3259 |
typedef SubMapExtender<SplitNodesBase<DGR>, ArcMapBase<Value> > Parent;
|
|
3260 |
|
|
3261 |
ArcMap(const SplitNodesBase<DGR>& adaptor)
|
3275 |
3262 |
: Parent(adaptor) {}
|
3276 |
3263 |
|
3277 |
|
ArcMap(const Adaptor& adaptor, const Value& value)
|
|
3264 |
ArcMap(const SplitNodesBase<DGR>& adaptor, const V& value)
|
3278 |
3265 |
: Parent(adaptor, value) {}
|
... |
... |
@@ -3295,5 +3282,5 @@
|
3295 |
3282 |
|
3296 |
|
Digraph* _digraph;
|
3297 |
|
|
3298 |
|
void setDigraph(Digraph& digraph) {
|
|
3283 |
DGR* _digraph;
|
|
3284 |
|
|
3285 |
void initialize(Digraph& digraph) {
|
3299 |
3286 |
_digraph = &digraph;
|
... |
... |
@@ -3324,3 +3311,3 @@
|
3324 |
3311 |
///
|
3325 |
|
/// \tparam GR The type of the adapted digraph.
|
|
3312 |
/// \tparam DGR The type of the adapted digraph.
|
3326 |
3313 |
/// It must conform to the \ref concepts::Digraph "Digraph" concept.
|
... |
... |
@@ -3330,3 +3317,3 @@
|
3330 |
3317 |
/// type of the adapted digraph.
|
3331 |
|
template <typename GR>
|
|
3318 |
template <typename DGR>
|
3332 |
3319 |
#ifdef DOXYGEN
|
... |
... |
@@ -3335,10 +3322,10 @@
|
3335 |
3322 |
class SplitNodes
|
3336 |
|
: public DigraphAdaptorExtender<SplitNodesBase<const GR> > {
|
|
3323 |
: public DigraphAdaptorExtender<SplitNodesBase<const DGR> > {
|
3337 |
3324 |
#endif
|
3338 |
3325 |
public:
|
3339 |
|
typedef GR Digraph;
|
3340 |
|
typedef DigraphAdaptorExtender<SplitNodesBase<const GR> > Parent;
|
3341 |
|
|
3342 |
|
typedef typename Digraph::Node DigraphNode;
|
3343 |
|
typedef typename Digraph::Arc DigraphArc;
|
|
3326 |
typedef DGR Digraph;
|
|
3327 |
typedef DigraphAdaptorExtender<SplitNodesBase<const DGR> > Parent;
|
|
3328 |
|
|
3329 |
typedef typename DGR::Node DigraphNode;
|
|
3330 |
typedef typename DGR::Arc DigraphArc;
|
3344 |
3331 |
|
... |
... |
@@ -3350,4 +3337,4 @@
|
3350 |
3337 |
/// Constructor of the adaptor.
|
3351 |
|
SplitNodes(const Digraph& g) {
|
3352 |
|
Parent::setDigraph(g);
|
|
3338 |
SplitNodes(const DGR& g) {
|
|
3339 |
Parent::initialize(g);
|
3353 |
3340 |
}
|
... |
... |
@@ -3443,3 +3430,3 @@
|
3443 |
3430 |
Value operator[](const Key& key) const {
|
3444 |
|
if (Parent::inNode(key)) {
|
|
3431 |
if (SplitNodesBase<const DGR>::inNode(key)) {
|
3445 |
3432 |
return _in_map[key];
|
... |
... |
@@ -3452,3 +3439,3 @@
|
3452 |
3439 |
Value& operator[](const Key& key) {
|
3453 |
|
if (Parent::inNode(key)) {
|
|
3440 |
if (SplitNodesBase<const DGR>::inNode(key)) {
|
3454 |
3441 |
return _in_map[key];
|
... |
... |
@@ -3461,3 +3448,3 @@
|
3461 |
3448 |
void set(const Key& key, const Value& value) {
|
3462 |
|
if (Parent::inNode(key)) {
|
|
3449 |
if (SplitNodesBase<const DGR>::inNode(key)) {
|
3463 |
3450 |
_in_map.set(key, value);
|
... |
... |
@@ -3532,3 +3519,3 @@
|
3532 |
3519 |
Value operator[](const Key& arc) const {
|
3533 |
|
if (Parent::origArc(arc)) {
|
|
3520 |
if (SplitNodesBase<const DGR>::origArc(arc)) {
|
3534 |
3521 |
return _arc_map[arc];
|
... |
... |
@@ -3541,3 +3528,3 @@
|
3541 |
3528 |
Value& operator[](const Key& arc) {
|
3542 |
|
if (Parent::origArc(arc)) {
|
|
3529 |
if (SplitNodesBase<const DGR>::origArc(arc)) {
|
3543 |
3530 |
return _arc_map[arc];
|
... |
... |
@@ -3550,3 +3537,3 @@
|
3550 |
3537 |
void set(const Arc& arc, const Value& val) {
|
3551 |
|
if (Parent::origArc(arc)) {
|
|
3538 |
if (SplitNodesBase<const DGR>::origArc(arc)) {
|
3552 |
3539 |
_arc_map.set(arc, val);
|
... |
... |
@@ -3596,8 +3583,10 @@
|
3596 |
3583 |
/// \relates SplitNodes
|
3597 |
|
template<typename GR>
|
3598 |
|
SplitNodes<GR>
|
3599 |
|
splitNodes(const GR& digraph) {
|
3600 |
|
return SplitNodes<GR>(digraph);
|
|
3584 |
template<typename DGR>
|
|
3585 |
SplitNodes<DGR>
|
|
3586 |
splitNodes(const DGR& digraph) {
|
|
3587 |
return SplitNodes<DGR>(digraph);
|
3601 |
3588 |
}
|
3602 |
3589 |
|
|
3590 |
#undef LEMON_SCOPE_FIX
|
|
3591 |
|
3603 |
3592 |
} //namespace lemon
|