-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlemon_adaptors_patch.cpp
3638 lines (3010 loc) · 110 KB
/
lemon_adaptors_patch.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* -*- mode: C++; indent-tabs-mode: nil; -*-
*
* This file is a part of LEMON, a generic C++ optimization library.
*
* Copyright (C) 2003-2013
* Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
* (Egervary Research Group on Combinatorial Optimization, EGRES).
*
* Permission to use, modify and distribute this software is granted
* provided that this copyright notice appears in all copies. For
* precise terms see the accompanying LICENSE file.
*
* This software is provided "AS IS" with no warranty of any kind,
* express or implied, and with no claim as to its suitability for any
* purpose.
*
*/
#ifndef LEMON_ADAPTORS_H
#define LEMON_ADAPTORS_H
/// \ingroup graph_adaptors
/// \file
/// \brief Adaptor classes for digraphs and graphs
///
/// This file contains several useful adaptors for digraphs and graphs.
#include <lemon/core.h>
#include <lemon/maps.h>
#include <lemon/bits/variant.h>
#include <lemon/bits/graph_adaptor_extender.h>
#include <lemon/bits/map_extender.h>
#include <lemon/tolerance.h>
#include <algorithm>
namespace lemon {
#ifdef _MSC_VER
#define LEMON_SCOPE_FIX(OUTER, NESTED) typename OUTER::NESTED
#else
#define LEMON_SCOPE_FIX(OUTER, NESTED) typename OUTER::template NESTED
#endif
template<typename DGR>
class DigraphAdaptorBase {
public:
typedef DGR Digraph;
typedef DigraphAdaptorBase Adaptor;
protected:
DGR* _digraph;
DigraphAdaptorBase() : _digraph(0) { }
void initialize(DGR& digraph) { _digraph = &digraph; }
public:
DigraphAdaptorBase(DGR& digraph) : _digraph(&digraph) { }
typedef typename DGR::Node Node;
typedef typename DGR::Arc Arc;
void first(Node& i) const { _digraph->first(i); }
void first(Arc& i) const { _digraph->first(i); }
void firstIn(Arc& i, const Node& n) const { _digraph->firstIn(i, n); }
void firstOut(Arc& i, const Node& n ) const { _digraph->firstOut(i, n); }
void next(Node& i) const { _digraph->next(i); }
void next(Arc& i) const { _digraph->next(i); }
void nextIn(Arc& i) const { _digraph->nextIn(i); }
void nextOut(Arc& i) const { _digraph->nextOut(i); }
Node source(const Arc& a) const { return _digraph->source(a); }
Node target(const Arc& a) const { return _digraph->target(a); }
typedef NodeNumTagIndicator<DGR> NodeNumTag;
int nodeNum() const { return _digraph->nodeNum(); }
typedef ArcNumTagIndicator<DGR> ArcNumTag;
int arcNum() const { return _digraph->arcNum(); }
typedef FindArcTagIndicator<DGR> FindArcTag;
Arc findArc(const Node& u, const Node& v, const Arc& prev = INVALID) const {
return _digraph->findArc(u, v, prev);
}
Node addNode() { return _digraph->addNode(); }
Arc addArc(const Node& u, const Node& v) { return _digraph->addArc(u, v); }
void erase(const Node& n) { _digraph->erase(n); }
void erase(const Arc& a) { _digraph->erase(a); }
void clear() { _digraph->clear(); }
int id(const Node& n) const { return _digraph->id(n); }
int id(const Arc& a) const { return _digraph->id(a); }
Node nodeFromId(int ix) const { return _digraph->nodeFromId(ix); }
Arc arcFromId(int ix) const { return _digraph->arcFromId(ix); }
int maxNodeId() const { return _digraph->maxNodeId(); }
int maxArcId() const { return _digraph->maxArcId(); }
typedef typename ItemSetTraits<DGR, Node>::ItemNotifier NodeNotifier;
NodeNotifier& notifier(Node) const { return _digraph->notifier(Node()); }
typedef typename ItemSetTraits<DGR, Arc>::ItemNotifier ArcNotifier;
ArcNotifier& notifier(Arc) const { return _digraph->notifier(Arc()); }
template <typename V>
class NodeMap : public DGR::template NodeMap<V> {
typedef typename DGR::template NodeMap<V> Parent;
public:
explicit NodeMap(const Adaptor& adaptor)
: Parent(*adaptor._digraph) {}
NodeMap(const Adaptor& adaptor, const V& value)
: Parent(*adaptor._digraph, value) { }
private:
NodeMap& operator=(const NodeMap& cmap) {
return operator=<NodeMap>(cmap);
}
template <typename CMap>
NodeMap& operator=(const CMap& cmap) {
Parent::operator=(cmap);
return *this;
}
};
template <typename V>
class ArcMap : public DGR::template ArcMap<V> {
typedef typename DGR::template ArcMap<V> Parent;
public:
explicit ArcMap(const DigraphAdaptorBase<DGR>& adaptor)
: Parent(*adaptor._digraph) {}
ArcMap(const DigraphAdaptorBase<DGR>& adaptor, const V& value)
: Parent(*adaptor._digraph, value) {}
private:
ArcMap& operator=(const ArcMap& cmap) {
return operator=<ArcMap>(cmap);
}
template <typename CMap>
ArcMap& operator=(const CMap& cmap) {
Parent::operator=(cmap);
return *this;
}
};
};
template<typename GR>
class GraphAdaptorBase {
public:
typedef GR Graph;
protected:
GR* _graph;
GraphAdaptorBase() : _graph(0) {}
void initialize(GR& graph) { _graph = &graph; }
public:
GraphAdaptorBase(GR& graph) : _graph(&graph) {}
typedef typename GR::Node Node;
typedef typename GR::Arc Arc;
typedef typename GR::Edge Edge;
void first(Node& i) const { _graph->first(i); }
void first(Arc& i) const { _graph->first(i); }
void first(Edge& i) const { _graph->first(i); }
void firstIn(Arc& i, const Node& n) const { _graph->firstIn(i, n); }
void firstOut(Arc& i, const Node& n ) const { _graph->firstOut(i, n); }
void firstInc(Edge &i, bool &d, const Node &n) const {
_graph->firstInc(i, d, n);
}
void next(Node& i) const { _graph->next(i); }
void next(Arc& i) const { _graph->next(i); }
void next(Edge& i) const { _graph->next(i); }
void nextIn(Arc& i) const { _graph->nextIn(i); }
void nextOut(Arc& i) const { _graph->nextOut(i); }
void nextInc(Edge &i, bool &d) const { _graph->nextInc(i, d); }
Node u(const Edge& e) const { return _graph->u(e); }
Node v(const Edge& e) const { return _graph->v(e); }
Node source(const Arc& a) const { return _graph->source(a); }
Node target(const Arc& a) const { return _graph->target(a); }
typedef NodeNumTagIndicator<Graph> NodeNumTag;
int nodeNum() const { return _graph->nodeNum(); }
typedef ArcNumTagIndicator<Graph> ArcNumTag;
int arcNum() const { return _graph->arcNum(); }
typedef EdgeNumTagIndicator<Graph> EdgeNumTag;
int edgeNum() const { return _graph->edgeNum(); }
typedef FindArcTagIndicator<Graph> FindArcTag;
Arc findArc(const Node& u, const Node& v,
const Arc& prev = INVALID) const {
return _graph->findArc(u, v, prev);
}
typedef FindEdgeTagIndicator<Graph> FindEdgeTag;
Edge findEdge(const Node& u, const Node& v,
const Edge& prev = INVALID) const {
return _graph->findEdge(u, v, prev);
}
Node addNode() { return _graph->addNode(); }
Edge addEdge(const Node& u, const Node& v) { return _graph->addEdge(u, v); }
void erase(const Node& i) { _graph->erase(i); }
void erase(const Edge& i) { _graph->erase(i); }
void clear() { _graph->clear(); }
bool direction(const Arc& a) const { return _graph->direction(a); }
Arc direct(const Edge& e, bool d) const { return _graph->direct(e, d); }
int id(const Node& v) const { return _graph->id(v); }
int id(const Arc& a) const { return _graph->id(a); }
int id(const Edge& e) const { return _graph->id(e); }
Node nodeFromId(int ix) const { return _graph->nodeFromId(ix); }
Arc arcFromId(int ix) const { return _graph->arcFromId(ix); }
Edge edgeFromId(int ix) const { return _graph->edgeFromId(ix); }
int maxNodeId() const { return _graph->maxNodeId(); }
int maxArcId() const { return _graph->maxArcId(); }
int maxEdgeId() const { return _graph->maxEdgeId(); }
typedef typename ItemSetTraits<GR, Node>::ItemNotifier NodeNotifier;
NodeNotifier& notifier(Node) const { return _graph->notifier(Node()); }
typedef typename ItemSetTraits<GR, Arc>::ItemNotifier ArcNotifier;
ArcNotifier& notifier(Arc) const { return _graph->notifier(Arc()); }
typedef typename ItemSetTraits<GR, Edge>::ItemNotifier EdgeNotifier;
EdgeNotifier& notifier(Edge) const { return _graph->notifier(Edge()); }
template <typename V>
class NodeMap : public GR::template NodeMap<V> {
typedef typename GR::template NodeMap<V> Parent;
public:
explicit NodeMap(const GraphAdaptorBase<GR>& adapter)
: Parent(*adapter._graph) {}
NodeMap(const GraphAdaptorBase<GR>& adapter, const V& value)
: Parent(*adapter._graph, value) {}
private:
NodeMap& operator=(const NodeMap& cmap) {
return operator=<NodeMap>(cmap);
}
template <typename CMap>
NodeMap& operator=(const CMap& cmap) {
Parent::operator=(cmap);
return *this;
}
};
template <typename V>
class ArcMap : public GR::template ArcMap<V> {
typedef typename GR::template ArcMap<V> Parent;
public:
explicit ArcMap(const GraphAdaptorBase<GR>& adapter)
: Parent(*adapter._graph) {}
ArcMap(const GraphAdaptorBase<GR>& adapter, const V& value)
: Parent(*adapter._graph, value) {}
private:
ArcMap& operator=(const ArcMap& cmap) {
return operator=<ArcMap>(cmap);
}
template <typename CMap>
ArcMap& operator=(const CMap& cmap) {
Parent::operator=(cmap);
return *this;
}
};
template <typename V>
class EdgeMap : public GR::template EdgeMap<V> {
typedef typename GR::template EdgeMap<V> Parent;
public:
explicit EdgeMap(const GraphAdaptorBase<GR>& adapter)
: Parent(*adapter._graph) {}
EdgeMap(const GraphAdaptorBase<GR>& adapter, const V& value)
: Parent(*adapter._graph, value) {}
private:
EdgeMap& operator=(const EdgeMap& cmap) {
return operator=<EdgeMap>(cmap);
}
template <typename CMap>
EdgeMap& operator=(const CMap& cmap) {
Parent::operator=(cmap);
return *this;
}
};
};
template <typename DGR>
class ReverseDigraphBase : public DigraphAdaptorBase<DGR> {
typedef DigraphAdaptorBase<DGR> Parent;
public:
typedef DGR Digraph;
protected:
ReverseDigraphBase() : Parent() { }
public:
typedef typename Parent::Node Node;
typedef typename Parent::Arc Arc;
void firstIn(Arc& a, const Node& n) const { Parent::firstOut(a, n); }
void firstOut(Arc& a, const Node& n ) const { Parent::firstIn(a, n); }
void nextIn(Arc& a) const { Parent::nextOut(a); }
void nextOut(Arc& a) const { Parent::nextIn(a); }
Node source(const Arc& a) const { return Parent::target(a); }
Node target(const Arc& a) const { return Parent::source(a); }
Arc addArc(const Node& u, const Node& v) { return Parent::addArc(v, u); }
typedef FindArcTagIndicator<DGR> FindArcTag;
Arc findArc(const Node& u, const Node& v,
const Arc& prev = INVALID) const {
return Parent::findArc(v, u, prev);
}
};
/// \ingroup graph_adaptors
///
/// \brief Adaptor class for reversing the orientation of the arcs in
/// a digraph.
///
/// ReverseDigraph can be used for reversing the arcs in a digraph.
/// It conforms to the \ref concepts::Digraph "Digraph" concept.
///
/// The adapted digraph can also be modified through this adaptor
/// by adding or removing nodes or arcs, unless the \c GR template
/// parameter is set to be \c const.
///
/// This class provides item counting in the same time as the adapted
/// digraph structure.
///
/// \tparam DGR The type of the adapted digraph.
/// It must conform to the \ref concepts::Digraph "Digraph" concept.
/// It can also be specified to be \c const.
///
/// \note The \c Node and \c Arc types of this adaptor and the adapted
/// digraph are convertible to each other.
template<typename DGR>
#ifdef DOXYGEN
class ReverseDigraph {
#else
class ReverseDigraph :
public DigraphAdaptorExtender<ReverseDigraphBase<DGR> > {
#endif
typedef DigraphAdaptorExtender<ReverseDigraphBase<DGR> > Parent;
public:
/// The type of the adapted digraph.
typedef DGR Digraph;
protected:
ReverseDigraph() { }
public:
/// \brief Constructor
///
/// Creates a reverse digraph adaptor for the given digraph.
explicit ReverseDigraph(DGR& digraph) {
Parent::initialize(digraph);
}
};
/// \brief Returns a read-only ReverseDigraph adaptor
///
/// This function just returns a read-only \ref ReverseDigraph adaptor.
/// \ingroup graph_adaptors
/// \relates ReverseDigraph
template<typename DGR>
ReverseDigraph<const DGR> reverseDigraph(const DGR& digraph) {
return ReverseDigraph<const DGR>(digraph);
}
template <typename DGR, typename NF, typename AF, bool ch = true>
class SubDigraphBase : public DigraphAdaptorBase<DGR> {
typedef DigraphAdaptorBase<DGR> Parent;
public:
typedef DGR Digraph;
typedef NF NodeFilterMap;
typedef AF ArcFilterMap;
typedef SubDigraphBase Adaptor;
protected:
NF* _node_filter;
AF* _arc_filter;
SubDigraphBase()
: Parent(), _node_filter(0), _arc_filter(0) { }
void initialize(DGR& digraph, NF& node_filter, AF& arc_filter) {
Parent::initialize(digraph);
_node_filter = &node_filter;
_arc_filter = &arc_filter;
}
public:
typedef typename Parent::Node Node;
typedef typename Parent::Arc Arc;
void first(Node& i) const {
Parent::first(i);
while (i != INVALID && !(*_node_filter)[i]) Parent::next(i);
}
void first(Arc& i) const {
Parent::first(i);
while (i != INVALID && (!(*_arc_filter)[i]
|| !(*_node_filter)[Parent::source(i)]
|| !(*_node_filter)[Parent::target(i)]))
Parent::next(i);
}
void firstIn(Arc& i, const Node& n) const {
Parent::firstIn(i, n);
while (i != INVALID && (!(*_arc_filter)[i]
|| !(*_node_filter)[Parent::source(i)]))
Parent::nextIn(i);
}
void firstOut(Arc& i, const Node& n) const {
Parent::firstOut(i, n);
while (i != INVALID && (!(*_arc_filter)[i]
|| !(*_node_filter)[Parent::target(i)]))
Parent::nextOut(i);
}
void next(Node& i) const {
Parent::next(i);
while (i != INVALID && !(*_node_filter)[i]) Parent::next(i);
}
void next(Arc& i) const {
Parent::next(i);
while (i != INVALID && (!(*_arc_filter)[i]
|| !(*_node_filter)[Parent::source(i)]
|| !(*_node_filter)[Parent::target(i)]))
Parent::next(i);
}
void nextIn(Arc& i) const {
Parent::nextIn(i);
while (i != INVALID && (!(*_arc_filter)[i]
|| !(*_node_filter)[Parent::source(i)]))
Parent::nextIn(i);
}
void nextOut(Arc& i) const {
Parent::nextOut(i);
while (i != INVALID && (!(*_arc_filter)[i]
|| !(*_node_filter)[Parent::target(i)]))
Parent::nextOut(i);
}
void status(const Node& n, bool v) const { _node_filter->set(n, v); }
void status(const Arc& a, bool v) const { _arc_filter->set(a, v); }
bool status(const Node& n) const { return (*_node_filter)[n]; }
bool status(const Arc& a) const { return (*_arc_filter)[a]; }
typedef False NodeNumTag;
typedef False ArcNumTag;
typedef FindArcTagIndicator<DGR> FindArcTag;
Arc findArc(const Node& source, const Node& target,
const Arc& prev = INVALID) const {
if (!(*_node_filter)[source] || !(*_node_filter)[target]) {
return INVALID;
}
Arc arc = Parent::findArc(source, target, prev);
while (arc != INVALID && !(*_arc_filter)[arc]) {
arc = Parent::findArc(source, target, arc);
}
return arc;
}
public:
template <typename V>
class NodeMap
: public SubMapExtender<SubDigraphBase<DGR, NF, AF, ch>,
LEMON_SCOPE_FIX(DigraphAdaptorBase<DGR>, NodeMap<V>)> {
typedef SubMapExtender<SubDigraphBase<DGR, NF, AF, ch>,
LEMON_SCOPE_FIX(DigraphAdaptorBase<DGR>, NodeMap<V>)> Parent;
public:
typedef V Value;
NodeMap(const SubDigraphBase<DGR, NF, AF, ch>& adaptor)
: Parent(adaptor) {}
NodeMap(const SubDigraphBase<DGR, NF, AF, ch>& adaptor, const V& value)
: Parent(adaptor, value) {}
private:
NodeMap& operator=(const NodeMap& cmap) {
return operator=<NodeMap>(cmap);
}
template <typename CMap>
NodeMap& operator=(const CMap& cmap) {
Parent::operator=(cmap);
return *this;
}
};
template <typename V>
class ArcMap
: public SubMapExtender<SubDigraphBase<DGR, NF, AF, ch>,
LEMON_SCOPE_FIX(DigraphAdaptorBase<DGR>, ArcMap<V>)> {
typedef SubMapExtender<SubDigraphBase<DGR, NF, AF, ch>,
LEMON_SCOPE_FIX(DigraphAdaptorBase<DGR>, ArcMap<V>)> Parent;
public:
typedef V Value;
ArcMap(const SubDigraphBase<DGR, NF, AF, ch>& adaptor)
: Parent(adaptor) {}
ArcMap(const SubDigraphBase<DGR, NF, AF, ch>& adaptor, const V& value)
: Parent(adaptor, value) {}
private:
ArcMap& operator=(const ArcMap& cmap) {
return operator=<ArcMap>(cmap);
}
template <typename CMap>
ArcMap& operator=(const CMap& cmap) {
Parent::operator=(cmap);
return *this;
}
};
};
template <typename DGR, typename NF, typename AF>
class SubDigraphBase<DGR, NF, AF, false>
: public DigraphAdaptorBase<DGR> {
typedef DigraphAdaptorBase<DGR> Parent;
public:
typedef DGR Digraph;
typedef NF NodeFilterMap;
typedef AF ArcFilterMap;
typedef SubDigraphBase Adaptor;
protected:
NF* _node_filter;
AF* _arc_filter;
SubDigraphBase()
: Parent(), _node_filter(0), _arc_filter(0) { }
void initialize(DGR& digraph, NF& node_filter, AF& arc_filter) {
Parent::initialize(digraph);
_node_filter = &node_filter;
_arc_filter = &arc_filter;
}
public:
typedef typename Parent::Node Node;
typedef typename Parent::Arc Arc;
void first(Node& i) const {
Parent::first(i);
while (i!=INVALID && !(*_node_filter)[i]) Parent::next(i);
}
void first(Arc& i) const {
Parent::first(i);
while (i!=INVALID && !(*_arc_filter)[i]) Parent::next(i);
}
void firstIn(Arc& i, const Node& n) const {
Parent::firstIn(i, n);
while (i!=INVALID && !(*_arc_filter)[i]) Parent::nextIn(i);
}
void firstOut(Arc& i, const Node& n) const {
Parent::firstOut(i, n);
while (i!=INVALID && !(*_arc_filter)[i]) Parent::nextOut(i);
}
void next(Node& i) const {
Parent::next(i);
while (i!=INVALID && !(*_node_filter)[i]) Parent::next(i);
}
void next(Arc& i) const {
Parent::next(i);
while (i!=INVALID && !(*_arc_filter)[i]) Parent::next(i);
}
void nextIn(Arc& i) const {
Parent::nextIn(i);
while (i!=INVALID && !(*_arc_filter)[i]) Parent::nextIn(i);
}
void nextOut(Arc& i) const {
Parent::nextOut(i);
while (i!=INVALID && !(*_arc_filter)[i]) Parent::nextOut(i);
}
void status(const Node& n, bool v) const { _node_filter->set(n, v); }
void status(const Arc& a, bool v) const { _arc_filter->set(a, v); }
bool status(const Node& n) const { return (*_node_filter)[n]; }
bool status(const Arc& a) const { return (*_arc_filter)[a]; }
typedef False NodeNumTag;
typedef False ArcNumTag;
typedef FindArcTagIndicator<DGR> FindArcTag;
Arc findArc(const Node& source, const Node& target,
const Arc& prev = INVALID) const {
if (!(*_node_filter)[source] || !(*_node_filter)[target]) {
return INVALID;
}
Arc arc = Parent::findArc(source, target, prev);
while (arc != INVALID && !(*_arc_filter)[arc]) {
arc = Parent::findArc(source, target, arc);
}
return arc;
}
template <typename V>
class NodeMap
: public SubMapExtender<SubDigraphBase<DGR, NF, AF, false>,
LEMON_SCOPE_FIX(DigraphAdaptorBase<DGR>, NodeMap<V>)> {
typedef SubMapExtender<SubDigraphBase<DGR, NF, AF, false>,
LEMON_SCOPE_FIX(DigraphAdaptorBase<DGR>, NodeMap<V>)> Parent;
public:
typedef V Value;
NodeMap(const SubDigraphBase<DGR, NF, AF, false>& adaptor)
: Parent(adaptor) {}
NodeMap(const SubDigraphBase<DGR, NF, AF, false>& adaptor, const V& value)
: Parent(adaptor, value) {}
private:
NodeMap& operator=(const NodeMap& cmap) {
return operator=<NodeMap>(cmap);
}
template <typename CMap>
NodeMap& operator=(const CMap& cmap) {
Parent::operator=(cmap);
return *this;
}
};
template <typename V>
class ArcMap
: public SubMapExtender<SubDigraphBase<DGR, NF, AF, false>,
LEMON_SCOPE_FIX(DigraphAdaptorBase<DGR>, ArcMap<V>)> {
typedef SubMapExtender<SubDigraphBase<DGR, NF, AF, false>,
LEMON_SCOPE_FIX(DigraphAdaptorBase<DGR>, ArcMap<V>)> Parent;
public:
typedef V Value;
ArcMap(const SubDigraphBase<DGR, NF, AF, false>& adaptor)
: Parent(adaptor) {}
ArcMap(const SubDigraphBase<DGR, NF, AF, false>& adaptor, const V& value)
: Parent(adaptor, value) {}
private:
ArcMap& operator=(const ArcMap& cmap) {
return operator=<ArcMap>(cmap);
}
template <typename CMap>
ArcMap& operator=(const CMap& cmap) {
Parent::operator=(cmap);
return *this;
}
};
};
/// \ingroup graph_adaptors
///
/// \brief Adaptor class for hiding nodes and arcs in a digraph
///
/// SubDigraph can be used for hiding nodes and arcs in a digraph.
/// A \c bool node map and a \c bool arc map must be specified, which
/// define the filters for nodes and arcs.
/// Only the nodes and arcs with \c true filter value are
/// shown in the subdigraph. The arcs that are incident to hidden
/// nodes are also filtered out.
/// This adaptor conforms to the \ref concepts::Digraph "Digraph" concept.
///
/// The adapted digraph can also be modified through this adaptor
/// by adding or removing nodes or arcs, unless the \c GR template
/// parameter is set to be \c const.
///
/// This class provides only linear time counting for nodes and arcs.
///
/// \tparam DGR The type of the adapted digraph.
/// It must conform to the \ref concepts::Digraph "Digraph" concept.
/// It can also be specified to be \c const.
/// \tparam NF The type of the node filter map.
/// It must be a \c bool (or convertible) node map of the
/// adapted digraph. The default type is
/// \ref concepts::Digraph::NodeMap "DGR::NodeMap<bool>".
/// \tparam AF The type of the arc filter map.
/// It must be \c bool (or convertible) arc map of the
/// adapted digraph. The default type is
/// \ref concepts::Digraph::ArcMap "DGR::ArcMap<bool>".
///
/// \note The \c Node and \c Arc types of this adaptor and the adapted
/// digraph are convertible to each other.
///
/// \see FilterNodes
/// \see FilterArcs
#ifdef DOXYGEN
template<typename DGR, typename NF, typename AF>
class SubDigraph {
#else
template<typename DGR,
typename NF = typename DGR::template NodeMap<bool>,
typename AF = typename DGR::template ArcMap<bool> >
class SubDigraph :
public DigraphAdaptorExtender<SubDigraphBase<DGR, NF, AF, true> > {
#endif
public:
/// The type of the adapted digraph.
typedef DGR Digraph;
/// The type of the node filter map.
typedef NF NodeFilterMap;
/// The type of the arc filter map.
typedef AF ArcFilterMap;
typedef DigraphAdaptorExtender<SubDigraphBase<DGR, NF, AF, true> >
Parent;
typedef typename Parent::Node Node;
typedef typename Parent::Arc Arc;
protected:
SubDigraph() { }
public:
/// \brief Constructor
///
/// Creates a subdigraph for the given digraph with the
/// given node and arc filter maps.
SubDigraph(DGR& digraph, NF& node_filter, AF& arc_filter) {
Parent::initialize(digraph, node_filter, arc_filter);
}
/// \brief Sets the status of the given node
///
/// This function sets the status of the given node.
/// It is done by simply setting the assigned value of \c n
/// to \c v in the node filter map.
void status(const Node& n, bool v) const { Parent::status(n, v); }
/// \brief Sets the status of the given arc
///
/// This function sets the status of the given arc.
/// It is done by simply setting the assigned value of \c a
/// to \c v in the arc filter map.
void status(const Arc& a, bool v) const { Parent::status(a, v); }
/// \brief Returns the status of the given node
///
/// This function returns the status of the given node.
/// It is \c true if the given node is enabled (i.e. not hidden).
bool status(const Node& n) const { return Parent::status(n); }
/// \brief Returns the status of the given arc
///
/// This function returns the status of the given arc.
/// It is \c true if the given arc is enabled (i.e. not hidden).
bool status(const Arc& a) const { return Parent::status(a); }
/// \brief Disables the given node
///
/// This function disables the given node in the subdigraph,
/// so the iteration jumps over it.
/// It is the same as \ref status() "status(n, false)".
void disable(const Node& n) const { Parent::status(n, false); }
/// \brief Disables the given arc
///
/// This function disables the given arc in the subdigraph,
/// so the iteration jumps over it.
/// It is the same as \ref status() "status(a, false)".
void disable(const Arc& a) const { Parent::status(a, false); }
/// \brief Enables the given node
///
/// This function enables the given node in the subdigraph.
/// It is the same as \ref status() "status(n, true)".
void enable(const Node& n) const { Parent::status(n, true); }
/// \brief Enables the given arc
///
/// This function enables the given arc in the subdigraph.
/// It is the same as \ref status() "status(a, true)".
void enable(const Arc& a) const { Parent::status(a, true); }
};
/// \brief Returns a read-only SubDigraph adaptor
///
/// This function just returns a read-only \ref SubDigraph adaptor.
/// \ingroup graph_adaptors
/// \relates SubDigraph
template<typename DGR, typename NF, typename AF>
SubDigraph<const DGR, NF, AF>
subDigraph(const DGR& digraph,
NF& node_filter, AF& arc_filter) {
return SubDigraph<const DGR, NF, AF>
(digraph, node_filter, arc_filter);
}
template<typename DGR, typename NF, typename AF>
SubDigraph<const DGR, const NF, AF>
subDigraph(const DGR& digraph,
const NF& node_filter, AF& arc_filter) {
return SubDigraph<const DGR, const NF, AF>
(digraph, node_filter, arc_filter);
}
template<typename DGR, typename NF, typename AF>
SubDigraph<const DGR, NF, const AF>
subDigraph(const DGR& digraph,
NF& node_filter, const AF& arc_filter) {
return SubDigraph<const DGR, NF, const AF>
(digraph, node_filter, arc_filter);
}
template<typename DGR, typename NF, typename AF>
SubDigraph<const DGR, const NF, const AF>
subDigraph(const DGR& digraph,
const NF& node_filter, const AF& arc_filter) {
return SubDigraph<const DGR, const NF, const AF>
(digraph, node_filter, arc_filter);
}
template <typename GR, typename NF, typename EF, bool ch = true>
class SubGraphBase : public GraphAdaptorBase<GR> {
typedef GraphAdaptorBase<GR> Parent;
public:
typedef GR Graph;
typedef NF NodeFilterMap;
typedef EF EdgeFilterMap;
typedef SubGraphBase Adaptor;
protected:
NF* _node_filter;
EF* _edge_filter;
SubGraphBase()
: Parent(), _node_filter(0), _edge_filter(0) { }
void initialize(GR& graph, NF& node_filter, EF& edge_filter) {
Parent::initialize(graph);
_node_filter = &node_filter;
_edge_filter = &edge_filter;
}
public:
typedef typename Parent::Node Node;
typedef typename Parent::Arc Arc;
typedef typename Parent::Edge Edge;
void first(Node& i) const {
Parent::first(i);
while (i!=INVALID && !(*_node_filter)[i]) Parent::next(i);
}
void first(Arc& i) const {
Parent::first(i);
while (i!=INVALID && (!(*_edge_filter)[i]
|| !(*_node_filter)[Parent::source(i)]
|| !(*_node_filter)[Parent::target(i)]))
Parent::next(i);
}
void first(Edge& i) const {
Parent::first(i);
while (i!=INVALID && (!(*_edge_filter)[i]
|| !(*_node_filter)[Parent::u(i)]
|| !(*_node_filter)[Parent::v(i)]))
Parent::next(i);
}
void firstIn(Arc& i, const Node& n) const {
Parent::firstIn(i, n);
while (i!=INVALID && (!(*_edge_filter)[i]
|| !(*_node_filter)[Parent::source(i)]))
Parent::nextIn(i);
}
void firstOut(Arc& i, const Node& n) const {
Parent::firstOut(i, n);
while (i!=INVALID && (!(*_edge_filter)[i]
|| !(*_node_filter)[Parent::target(i)]))
Parent::nextOut(i);
}
void firstInc(Edge& i, bool& d, const Node& n) const {
Parent::firstInc(i, d, n);
while (i!=INVALID && (!(*_edge_filter)[i]
|| !(*_node_filter)[Parent::u(i)]
|| !(*_node_filter)[Parent::v(i)]))
Parent::nextInc(i, d);
}
void next(Node& i) const {
Parent::next(i);
while (i!=INVALID && !(*_node_filter)[i]) Parent::next(i);
}
void next(Arc& i) const {
Parent::next(i);
while (i!=INVALID && (!(*_edge_filter)[i]
|| !(*_node_filter)[Parent::source(i)]
|| !(*_node_filter)[Parent::target(i)]))
Parent::next(i);
}
void next(Edge& i) const {
Parent::next(i);
while (i!=INVALID && (!(*_edge_filter)[i]
|| !(*_node_filter)[Parent::u(i)]
|| !(*_node_filter)[Parent::v(i)]))
Parent::next(i);
}
void nextIn(Arc& i) const {
Parent::nextIn(i);
while (i!=INVALID && (!(*_edge_filter)[i]
|| !(*_node_filter)[Parent::source(i)]))
Parent::nextIn(i);
}
void nextOut(Arc& i) const {
Parent::nextOut(i);
while (i!=INVALID && (!(*_edge_filter)[i]
|| !(*_node_filter)[Parent::target(i)]))
Parent::nextOut(i);
}
void nextInc(Edge& i, bool& d) const {
Parent::nextInc(i, d);
while (i!=INVALID && (!(*_edge_filter)[i]
|| !(*_node_filter)[Parent::u(i)]
|| !(*_node_filter)[Parent::v(i)]))
Parent::nextInc(i, d);
}
void status(const Node& n, bool v) const { _node_filter->set(n, v); }
void status(const Edge& e, bool v) const { _edge_filter->set(e, v); }
bool status(const Node& n) const { return (*_node_filter)[n]; }
bool status(const Edge& e) const { return (*_edge_filter)[e]; }
typedef False NodeNumTag;
typedef False ArcNumTag;
typedef False EdgeNumTag;
typedef FindArcTagIndicator<Graph> FindArcTag;
Arc findArc(const Node& u, const Node& v,
const Arc& prev = INVALID) const {
if (!(*_node_filter)[u] || !(*_node_filter)[v]) {