COIN-OR::LEMON - Graph Library

source: lemon/lemon/concepts/graph_components.h @ 626:d11bf7998905

Last change on this file since 626:d11bf7998905 was 626:d11bf7998905, checked in by Peter Kovacs <kpeter@…>, 15 years ago

Various improvements and fixes (mainly in the doc) (#190)

File size: 47.4 KB
RevLine 
[209]1/* -*- mode: C++; indent-tabs-mode: nil; -*-
[57]2 *
[209]3 * This file is a part of LEMON, a generic C++ optimization library.
[57]4 *
[463]5 * Copyright (C) 2003-2009
[57]6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
7 * (Egervary Research Group on Combinatorial Optimization, EGRES).
8 *
9 * Permission to use, modify and distribute this software is granted
10 * provided that this copyright notice appears in all copies. For
11 * precise terms see the accompanying LICENSE file.
12 *
13 * This software is provided "AS IS" with no warranty of any kind,
14 * express or implied, and with no claim as to its suitability for any
15 * purpose.
16 *
17 */
18
19///\ingroup graph_concepts
20///\file
21///\brief The concept of graph components.
22
[576]23#ifndef LEMON_CONCEPTS_GRAPH_COMPONENTS_H
24#define LEMON_CONCEPTS_GRAPH_COMPONENTS_H
[57]25
[220]26#include <lemon/core.h>
[57]27#include <lemon/concepts/maps.h>
28
29#include <lemon/bits/alteration_notifier.h>
30
31namespace lemon {
32  namespace concepts {
33
[626]34    /// \brief Concept class for \c Node, \c Arc and \c Edge types.
[57]35    ///
[626]36    /// This class describes the concept of \c Node, \c Arc and \c Edge
37    /// subtypes of digraph and graph types.
[57]38    ///
39    /// \note This class is a template class so that we can use it to
[626]40    /// create graph skeleton classes. The reason for this is that \c Node
41    /// and \c Arc (or \c Edge) types should \e not derive from the same
42    /// base class. For \c Node you should instantiate it with character
43    /// \c 'n', for \c Arc with \c 'a' and for \c Edge with \c 'e'.
[57]44#ifndef DOXYGEN
[606]45    template <char sel = '0'>
[57]46#endif
47    class GraphItem {
48    public:
49      /// \brief Default constructor.
[209]50      ///
[626]51      /// Default constructor.
[57]52      /// \warning The default constructor is not required to set
53      /// the item to some well-defined value. So you should consider it
54      /// as uninitialized.
55      GraphItem() {}
[626]56
[57]57      /// \brief Copy constructor.
58      ///
59      /// Copy constructor.
[626]60      GraphItem(const GraphItem &) {}
61
62      /// \brief Constructor for conversion from \c INVALID.
[57]63      ///
[626]64      /// Constructor for conversion from \c INVALID.
65      /// It initializes the item to be invalid.
[57]66      /// \sa Invalid for more details.
67      GraphItem(Invalid) {}
[626]68
69      /// \brief Assignment operator.
[57]70      ///
[626]71      /// Assignment operator for the item.
72      GraphItem& operator=(const GraphItem&) { return *this; }
73
[57]74      /// \brief Equality operator.
75      ///
[626]76      /// Equality operator.
77      bool operator==(const GraphItem&) const { return false; }
78
[57]79      /// \brief Inequality operator.
80      ///
[626]81      /// Inequality operator.
82      bool operator!=(const GraphItem&) const { return false; }
83
84      /// \brief Ordering operator.
[57]85      ///
[626]86      /// This operator defines an ordering of the items.
87      /// It makes possible to use graph item types as key types in
88      /// associative containers (e.g. \c std::map).
[57]89      ///
90      /// \note This operator only have to define some strict ordering of
91      /// the items; this order has nothing to do with the iteration
92      /// ordering of the items.
[626]93      bool operator<(const GraphItem&) const { return false; }
[57]94
95      template<typename _GraphItem>
96      struct Constraints {
[209]97        void constraints() {
98          _GraphItem i1;
99          _GraphItem i2 = i1;
100          _GraphItem i3 = INVALID;
[57]101
[209]102          i1 = i2 = i3;
103
104          bool b;
105          b = (ia == ib) && (ia != ib);
106          b = (ia == INVALID) && (ib != INVALID);
[57]107          b = (ia < ib);
[209]108        }
[57]109
[209]110        const _GraphItem &ia;
111        const _GraphItem &ib;
[57]112      };
113    };
114
[626]115    /// \brief Base skeleton class for directed graphs.
[209]116    ///
[626]117    /// This class describes the base interface of directed graph types.
118    /// All digraph %concepts have to conform to this class.
119    /// It just provides types for nodes and arcs and functions
120    /// to get the source and the target nodes of arcs.
[57]121    class BaseDigraphComponent {
122    public:
123
124      typedef BaseDigraphComponent Digraph;
[209]125
[57]126      /// \brief Node class of the digraph.
127      ///
[626]128      /// This class represents the nodes of the digraph.
[57]129      typedef GraphItem<'n'> Node;
130
131      /// \brief Arc class of the digraph.
132      ///
[626]133      /// This class represents the arcs of the digraph.
134      typedef GraphItem<'a'> Arc;
135
136      /// \brief Return the source node of an arc.
[57]137      ///
[626]138      /// This function returns the source node of an arc.
139      Node source(const Arc&) const { return INVALID; }
[57]140
[626]141      /// \brief Return the target node of an arc.
[57]142      ///
[626]143      /// This function returns the target node of an arc.
144      Node target(const Arc&) const { return INVALID; }
145
146      /// \brief Return the opposite node on the given arc.
[57]147      ///
[626]148      /// This function returns the opposite node on the given arc.
[57]149      Node oppositeNode(const Node&, const Arc&) const {
150        return INVALID;
151      }
152
153      template <typename _Digraph>
154      struct Constraints {
[209]155        typedef typename _Digraph::Node Node;
156        typedef typename _Digraph::Arc Arc;
157
158        void constraints() {
159          checkConcept<GraphItem<'n'>, Node>();
160          checkConcept<GraphItem<'a'>, Arc>();
161          {
162            Node n;
163            Arc e(INVALID);
164            n = digraph.source(e);
165            n = digraph.target(e);
[57]166            n = digraph.oppositeNode(n, e);
[209]167          }
168        }
169
170        const _Digraph& digraph;
[57]171      };
172    };
173
[626]174    /// \brief Base skeleton class for undirected graphs.
[209]175    ///
[626]176    /// This class describes the base interface of undirected graph types.
177    /// All graph %concepts have to conform to this class.
178    /// It extends the interface of \ref BaseDigraphComponent with an
179    /// \c Edge type and functions to get the end nodes of edges,
180    /// to convert from arcs to edges and to get both direction of edges.
[57]181    class BaseGraphComponent : public BaseDigraphComponent {
182    public:
183      typedef BaseDigraphComponent::Node Node;
184      typedef BaseDigraphComponent::Arc Arc;
[626]185
186      /// \brief Undirected edge class of the graph.
[57]187      ///
[626]188      /// This class represents the undirected edges of the graph.
189      /// Undirected graphs can be used as directed graphs, each edge is
190      /// represented by two opposite directed arcs.
191      class Edge : public GraphItem<'e'> {
[57]192      public:
[626]193        typedef GraphItem<'e'> Parent;
194
[57]195        /// \brief Default constructor.
[209]196        ///
[626]197        /// Default constructor.
[57]198        /// \warning The default constructor is not required to set
199        /// the item to some well-defined value. So you should consider it
200        /// as uninitialized.
201        Edge() {}
[626]202
[57]203        /// \brief Copy constructor.
204        ///
205        /// Copy constructor.
[626]206        Edge(const Edge &) : Parent() {}
207
208        /// \brief Constructor for conversion from \c INVALID.
[57]209        ///
[626]210        /// Constructor for conversion from \c INVALID.
211        /// It initializes the item to be invalid.
[57]212        /// \sa Invalid for more details.
213        Edge(Invalid) {}
[626]214
215        /// \brief Constructor for conversion from an arc.
[57]216        ///
[626]217        /// Constructor for conversion from an arc.
[57]218        /// Besides the core graph item functionality each arc should
[209]219        /// be convertible to the represented edge.
[57]220        Edge(const Arc&) {}
[626]221
222        /// \brief Assign an arc to an edge.
[57]223        ///
[626]224        /// This function assigns an arc to an edge.
[57]225        /// Besides the core graph item functionality each arc should
[209]226        /// be convertible to the represented edge.
[57]227        Edge& operator=(const Arc&) { return *this; }
228      };
229
[626]230      /// \brief Return one end node of an edge.
231      ///
232      /// This function returns one end node of an edge.
233      Node u(const Edge&) const { return INVALID; }
234
235      /// \brief Return the other end node of an edge.
236      ///
237      /// This function returns the other end node of an edge.
238      Node v(const Edge&) const { return INVALID; }
239
240      /// \brief Return a directed arc related to an edge.
241      ///
242      /// This function returns a directed arc from its direction and the
243      /// represented edge.
244      Arc direct(const Edge&, bool) const { return INVALID; }
245
246      /// \brief Return a directed arc related to an edge.
247      ///
248      /// This function returns a directed arc from its source node and the
249      /// represented edge.
250      Arc direct(const Edge&, const Node&) const { return INVALID; }
251
252      /// \brief Return the direction of the arc.
[57]253      ///
254      /// Returns the direction of the arc. Each arc represents an
255      /// edge with a direction. It gives back the
256      /// direction.
257      bool direction(const Arc&) const { return true; }
258
[626]259      /// \brief Return the opposite arc.
[57]260      ///
[626]261      /// This function returns the opposite arc, i.e. the arc representing
262      /// the same edge and has opposite direction.
263      Arc oppositeArc(const Arc&) const { return INVALID; }
[209]264
[57]265      template <typename _Graph>
266      struct Constraints {
[209]267        typedef typename _Graph::Node Node;
268        typedef typename _Graph::Arc Arc;
269        typedef typename _Graph::Edge Edge;
270
271        void constraints() {
[57]272          checkConcept<BaseDigraphComponent, _Graph>();
[626]273          checkConcept<GraphItem<'e'>, Edge>();
[209]274          {
275            Node n;
276            Edge ue(INVALID);
[57]277            Arc e;
[209]278            n = graph.u(ue);
279            n = graph.v(ue);
[57]280            e = graph.direct(ue, true);
[626]281            e = graph.direct(ue, false);
[57]282            e = graph.direct(ue, n);
283            e = graph.oppositeArc(e);
284            ue = e;
285            bool d = graph.direction(e);
286            ignore_unused_variable_warning(d);
[209]287          }
288        }
289
290        const _Graph& graph;
[57]291      };
292
293    };
294
[626]295    /// \brief Skeleton class for \e idable directed graphs.
[209]296    ///
[626]297    /// This class describes the interface of \e idable directed graphs.
298    /// It extends \ref BaseDigraphComponent with the core ID functions.
299    /// The ids of the items must be unique and immutable.
300    /// This concept is part of the Digraph concept.
[606]301    template <typename BAS = BaseDigraphComponent>
302    class IDableDigraphComponent : public BAS {
[57]303    public:
304
[606]305      typedef BAS Base;
[57]306      typedef typename Base::Node Node;
307      typedef typename Base::Arc Arc;
308
[626]309      /// \brief Return a unique integer id for the given node.
[57]310      ///
[626]311      /// This function returns a unique integer id for the given node.
312      int id(const Node&) const { return -1; }
313
314      /// \brief Return the node by its unique id.
[57]315      ///
[626]316      /// This function returns the node by its unique id.
317      /// If the digraph does not contain a node with the given id,
318      /// then the result of the function is undefined.
319      Node nodeFromId(int) const { return INVALID; }
[57]320
[626]321      /// \brief Return a unique integer id for the given arc.
[57]322      ///
[626]323      /// This function returns a unique integer id for the given arc.
324      int id(const Arc&) const { return -1; }
[57]325
[626]326      /// \brief Return the arc by its unique id.
[57]327      ///
[626]328      /// This function returns the arc by its unique id.
329      /// If the digraph does not contain an arc with the given id,
330      /// then the result of the function is undefined.
331      Arc arcFromId(int) const { return INVALID; }
332
333      /// \brief Return an integer greater or equal to the maximum
334      /// node id.
[57]335      ///
[626]336      /// This function returns an integer greater or equal to the
337      /// maximum node id.
338      int maxNodeId() const { return -1; }
[57]339
[626]340      /// \brief Return an integer greater or equal to the maximum
341      /// arc id.
[57]342      ///
[626]343      /// This function returns an integer greater or equal to the
344      /// maximum arc id.
345      int maxArcId() const { return -1; }
[57]346
347      template <typename _Digraph>
348      struct Constraints {
349
[209]350        void constraints() {
351          checkConcept<Base, _Digraph >();
352          typename _Digraph::Node node;
353          int nid = digraph.id(node);
354          nid = digraph.id(node);
355          node = digraph.nodeFromId(nid);
356          typename _Digraph::Arc arc;
357          int eid = digraph.id(arc);
358          eid = digraph.id(arc);
359          arc = digraph.arcFromId(eid);
[57]360
[209]361          nid = digraph.maxNodeId();
362          ignore_unused_variable_warning(nid);
363          eid = digraph.maxArcId();
364          ignore_unused_variable_warning(eid);
365        }
[57]366
[209]367        const _Digraph& digraph;
[57]368      };
369    };
370
[626]371    /// \brief Skeleton class for \e idable undirected graphs.
[209]372    ///
[626]373    /// This class describes the interface of \e idable undirected
374    /// graphs. It extends \ref IDableDigraphComponent with the core ID
375    /// functions of undirected graphs.
376    /// The ids of the items must be unique and immutable.
377    /// This concept is part of the Graph concept.
[606]378    template <typename BAS = BaseGraphComponent>
379    class IDableGraphComponent : public IDableDigraphComponent<BAS> {
[57]380    public:
381
[606]382      typedef BAS Base;
[57]383      typedef typename Base::Edge Edge;
384
[606]385      using IDableDigraphComponent<Base>::id;
[57]386
[626]387      /// \brief Return a unique integer id for the given edge.
[57]388      ///
[626]389      /// This function returns a unique integer id for the given edge.
390      int id(const Edge&) const { return -1; }
391
392      /// \brief Return the edge by its unique id.
[57]393      ///
[626]394      /// This function returns the edge by its unique id.
395      /// If the graph does not contain an edge with the given id,
396      /// then the result of the function is undefined.
397      Edge edgeFromId(int) const { return INVALID; }
[57]398
[626]399      /// \brief Return an integer greater or equal to the maximum
400      /// edge id.
[57]401      ///
[626]402      /// This function returns an integer greater or equal to the
403      /// maximum edge id.
404      int maxEdgeId() const { return -1; }
[57]405
406      template <typename _Graph>
407      struct Constraints {
408
[209]409        void constraints() {
410          checkConcept<IDableDigraphComponent<Base>, _Graph >();
411          typename _Graph::Edge edge;
412          int ueid = graph.id(edge);
413          ueid = graph.id(edge);
414          edge = graph.edgeFromId(ueid);
415          ueid = graph.maxEdgeId();
416          ignore_unused_variable_warning(ueid);
417        }
[57]418
[209]419        const _Graph& graph;
[57]420      };
421    };
422
[626]423    /// \brief Concept class for \c NodeIt, \c ArcIt and \c EdgeIt types.
[57]424    ///
[626]425    /// This class describes the concept of \c NodeIt, \c ArcIt and
426    /// \c EdgeIt subtypes of digraph and graph types.
[606]427    template <typename GR, typename Item>
428    class GraphItemIt : public Item {
[57]429    public:
430      /// \brief Default constructor.
431      ///
[626]432      /// Default constructor.
433      /// \warning The default constructor is not required to set
434      /// the iterator to some well-defined value. So you should consider it
435      /// as uninitialized.
[57]436      GraphItemIt() {}
[626]437
[57]438      /// \brief Copy constructor.
439      ///
440      /// Copy constructor.
[626]441      GraphItemIt(const GraphItemIt& it) : Item(it) {}
442
443      /// \brief Constructor that sets the iterator to the first item.
[57]444      ///
[626]445      /// Constructor that sets the iterator to the first item.
446      explicit GraphItemIt(const GR&) {}
447
448      /// \brief Constructor for conversion from \c INVALID.
[57]449      ///
[626]450      /// Constructor for conversion from \c INVALID.
451      /// It initializes the iterator to be invalid.
[57]452      /// \sa Invalid for more details.
453      GraphItemIt(Invalid) {}
[626]454
455      /// \brief Assignment operator.
[57]456      ///
[626]457      /// Assignment operator for the iterator.
458      GraphItemIt& operator=(const GraphItemIt&) { return *this; }
459
460      /// \brief Increment the iterator.
[57]461      ///
[626]462      /// This operator increments the iterator, i.e. assigns it to the
463      /// next item.
[57]464      GraphItemIt& operator++() { return *this; }
[626]465 
[57]466      /// \brief Equality operator
[209]467      ///
[626]468      /// Equality operator.
[57]469      /// Two iterators are equal if and only if they point to the
470      /// same object or both are invalid.
471      bool operator==(const GraphItemIt&) const { return true;}
[626]472
[57]473      /// \brief Inequality operator
[209]474      ///
[626]475      /// Inequality operator.
476      /// Two iterators are equal if and only if they point to the
477      /// same object or both are invalid.
[57]478      bool operator!=(const GraphItemIt&) const { return true;}
[209]479
[57]480      template<typename _GraphItemIt>
481      struct Constraints {
[209]482        void constraints() {
[626]483          checkConcept<GraphItem<>, _GraphItemIt>();
[209]484          _GraphItemIt it1(g);
485          _GraphItemIt it2;
[626]486          _GraphItemIt it3 = it1;
487          _GraphItemIt it4 = INVALID;
[57]488
[209]489          it2 = ++it1;
490          ++it2 = it1;
491          ++(++it1);
[57]492
[606]493          Item bi = it1;
[209]494          bi = it2;
495        }
[626]496        const GR& g;
[57]497      };
498    };
499
[626]500    /// \brief Concept class for \c InArcIt, \c OutArcIt and
501    /// \c IncEdgeIt types.
[57]502    ///
[626]503    /// This class describes the concept of \c InArcIt, \c OutArcIt
504    /// and \c IncEdgeIt subtypes of digraph and graph types.
505    ///
506    /// \note Since these iterator classes do not inherit from the same
507    /// base class, there is an additional template parameter (selector)
508    /// \c sel. For \c InArcIt you should instantiate it with character
509    /// \c 'i', for \c OutArcIt with \c 'o' and for \c IncEdgeIt with \c 'e'.
[606]510    template <typename GR,
511              typename Item = typename GR::Arc,
512              typename Base = typename GR::Node,
513              char sel = '0'>
514    class GraphIncIt : public Item {
[57]515    public:
516      /// \brief Default constructor.
517      ///
[626]518      /// Default constructor.
519      /// \warning The default constructor is not required to set
520      /// the iterator to some well-defined value. So you should consider it
521      /// as uninitialized.
[57]522      GraphIncIt() {}
[626]523
[57]524      /// \brief Copy constructor.
525      ///
526      /// Copy constructor.
[626]527      GraphIncIt(const GraphIncIt& it) : Item(it) {}
528
529      /// \brief Constructor that sets the iterator to the first
530      /// incoming or outgoing arc.
[57]531      ///
[626]532      /// Constructor that sets the iterator to the first arc
533      /// incoming to or outgoing from the given node.
534      explicit GraphIncIt(const GR&, const Base&) {}
535
536      /// \brief Constructor for conversion from \c INVALID.
[57]537      ///
[626]538      /// Constructor for conversion from \c INVALID.
539      /// It initializes the iterator to be invalid.
[57]540      /// \sa Invalid for more details.
541      GraphIncIt(Invalid) {}
[626]542
543      /// \brief Assignment operator.
[57]544      ///
[626]545      /// Assignment operator for the iterator.
546      GraphIncIt& operator=(const GraphIncIt&) { return *this; }
547
548      /// \brief Increment the iterator.
[57]549      ///
[626]550      /// This operator increments the iterator, i.e. assigns it to the
551      /// next arc incoming to or outgoing from the given node.
[57]552      GraphIncIt& operator++() { return *this; }
553
554      /// \brief Equality operator
555      ///
[626]556      /// Equality operator.
[57]557      /// Two iterators are equal if and only if they point to the
558      /// same object or both are invalid.
559      bool operator==(const GraphIncIt&) const { return true;}
560
561      /// \brief Inequality operator
562      ///
[626]563      /// Inequality operator.
564      /// Two iterators are equal if and only if they point to the
565      /// same object or both are invalid.
[57]566      bool operator!=(const GraphIncIt&) const { return true;}
567
568      template <typename _GraphIncIt>
569      struct Constraints {
[209]570        void constraints() {
[606]571          checkConcept<GraphItem<sel>, _GraphIncIt>();
[209]572          _GraphIncIt it1(graph, node);
573          _GraphIncIt it2;
[626]574          _GraphIncIt it3 = it1;
575          _GraphIncIt it4 = INVALID;
[57]576
[209]577          it2 = ++it1;
578          ++it2 = it1;
579          ++(++it1);
[606]580          Item e = it1;
[209]581          e = it2;
582        }
[626]583        const Base& node;
584        const GR& graph;
[57]585      };
586    };
587
[626]588    /// \brief Skeleton class for iterable directed graphs.
[57]589    ///
[626]590    /// This class describes the interface of iterable directed
591    /// graphs. It extends \ref BaseDigraphComponent with the core
592    /// iterable interface.
[57]593    /// This concept is part of the Digraph concept.
[606]594    template <typename BAS = BaseDigraphComponent>
595    class IterableDigraphComponent : public BAS {
[57]596
597    public:
[209]598
[606]599      typedef BAS Base;
[57]600      typedef typename Base::Node Node;
601      typedef typename Base::Arc Arc;
602
603      typedef IterableDigraphComponent Digraph;
604
605      /// \name Base iteration
[209]606      ///
[626]607      /// This interface provides functions for iteration on digraph items.
[57]608      ///
[209]609      /// @{
[57]610
[626]611      /// \brief Return the first node.
[209]612      ///
[626]613      /// This function gives back the first node in the iteration order.
[57]614      void first(Node&) const {}
615
[626]616      /// \brief Return the next node.
[57]617      ///
[626]618      /// This function gives back the next node in the iteration order.
[57]619      void next(Node&) const {}
620
[626]621      /// \brief Return the first arc.
[57]622      ///
[626]623      /// This function gives back the first arc in the iteration order.
[57]624      void first(Arc&) const {}
625
[626]626      /// \brief Return the next arc.
[57]627      ///
[626]628      /// This function gives back the next arc in the iteration order.
[57]629      void next(Arc&) const {}
630
[626]631      /// \brief Return the first arc incomming to the given node.
[57]632      ///
[626]633      /// This function gives back the first arc incomming to the
634      /// given node.
[57]635      void firstIn(Arc&, const Node&) const {}
636
[626]637      /// \brief Return the next arc incomming to the given node.
[57]638      ///
[626]639      /// This function gives back the next arc incomming to the
640      /// given node.
[57]641      void nextIn(Arc&) const {}
642
[626]643      /// \brief Return the first arc outgoing form the given node.
644      ///
645      /// This function gives back the first arc outgoing form the
[57]646      /// given node.
647      void firstOut(Arc&, const Node&) const {}
648
[626]649      /// \brief Return the next arc outgoing form the given node.
[57]650      ///
[626]651      /// This function gives back the next arc outgoing form the
652      /// given node.
[57]653      void nextOut(Arc&) const {}
654
655      /// @}
656
657      /// \name Class based iteration
[209]658      ///
[626]659      /// This interface provides iterator classes for digraph items.
[57]660      ///
661      /// @{
662
663      /// \brief This iterator goes through each node.
664      ///
665      /// This iterator goes through each node.
666      ///
667      typedef GraphItemIt<Digraph, Node> NodeIt;
668
[626]669      /// \brief This iterator goes through each arc.
[57]670      ///
[626]671      /// This iterator goes through each arc.
[57]672      ///
673      typedef GraphItemIt<Digraph, Arc> ArcIt;
674
675      /// \brief This iterator goes trough the incoming arcs of a node.
676      ///
[626]677      /// This iterator goes trough the \e incoming arcs of a certain node
[57]678      /// of a digraph.
679      typedef GraphIncIt<Digraph, Arc, Node, 'i'> InArcIt;
680
681      /// \brief This iterator goes trough the outgoing arcs of a node.
682      ///
683      /// This iterator goes trough the \e outgoing arcs of a certain node
684      /// of a digraph.
685      typedef GraphIncIt<Digraph, Arc, Node, 'o'> OutArcIt;
686
687      /// \brief The base node of the iterator.
688      ///
[626]689      /// This function gives back the base node of the iterator.
690      /// It is always the target node of the pointed arc.
[57]691      Node baseNode(const InArcIt&) const { return INVALID; }
692
693      /// \brief The running node of the iterator.
694      ///
[626]695      /// This function gives back the running node of the iterator.
696      /// It is always the source node of the pointed arc.
[57]697      Node runningNode(const InArcIt&) const { return INVALID; }
698
699      /// \brief The base node of the iterator.
700      ///
[626]701      /// This function gives back the base node of the iterator.
702      /// It is always the source node of the pointed arc.
[57]703      Node baseNode(const OutArcIt&) const { return INVALID; }
704
705      /// \brief The running node of the iterator.
706      ///
[626]707      /// This function gives back the running node of the iterator.
708      /// It is always the target node of the pointed arc.
[57]709      Node runningNode(const OutArcIt&) const { return INVALID; }
710
711      /// @}
712
[209]713      template <typename _Digraph>
[57]714      struct Constraints {
[209]715        void constraints() {
716          checkConcept<Base, _Digraph>();
[57]717
718          {
[209]719            typename _Digraph::Node node(INVALID);
[57]720            typename _Digraph::Arc arc(INVALID);
721            {
722              digraph.first(node);
723              digraph.next(node);
724            }
725            {
726              digraph.first(arc);
727              digraph.next(arc);
728            }
729            {
730              digraph.firstIn(arc, node);
731              digraph.nextIn(arc);
732            }
733            {
734              digraph.firstOut(arc, node);
735              digraph.nextOut(arc);
736            }
[209]737          }
[57]738
739          {
740            checkConcept<GraphItemIt<_Digraph, typename _Digraph::Arc>,
741              typename _Digraph::ArcIt >();
742            checkConcept<GraphItemIt<_Digraph, typename _Digraph::Node>,
743              typename _Digraph::NodeIt >();
[209]744            checkConcept<GraphIncIt<_Digraph, typename _Digraph::Arc,
[57]745              typename _Digraph::Node, 'i'>, typename _Digraph::InArcIt>();
[209]746            checkConcept<GraphIncIt<_Digraph, typename _Digraph::Arc,
[57]747              typename _Digraph::Node, 'o'>, typename _Digraph::OutArcIt>();
748
749            typename _Digraph::Node n;
[626]750            const typename _Digraph::InArcIt iait(INVALID);
751            const typename _Digraph::OutArcIt oait(INVALID);
752            n = digraph.baseNode(iait);
753            n = digraph.runningNode(iait);
754            n = digraph.baseNode(oait);
755            n = digraph.runningNode(oait);
[57]756            ignore_unused_variable_warning(n);
757          }
758        }
[209]759
760        const _Digraph& digraph;
[57]761      };
762    };
763
[626]764    /// \brief Skeleton class for iterable undirected graphs.
[57]765    ///
[626]766    /// This class describes the interface of iterable undirected
767    /// graphs. It extends \ref IterableDigraphComponent with the core
768    /// iterable interface of undirected graphs.
[57]769    /// This concept is part of the Graph concept.
[606]770    template <typename BAS = BaseGraphComponent>
771    class IterableGraphComponent : public IterableDigraphComponent<BAS> {
[57]772    public:
773
[606]774      typedef BAS Base;
[57]775      typedef typename Base::Node Node;
776      typedef typename Base::Arc Arc;
777      typedef typename Base::Edge Edge;
778
[209]779
[57]780      typedef IterableGraphComponent Graph;
781
782      /// \name Base iteration
[209]783      ///
[626]784      /// This interface provides functions for iteration on edges.
785      ///
[209]786      /// @{
[57]787
[606]788      using IterableDigraphComponent<Base>::first;
789      using IterableDigraphComponent<Base>::next;
[57]790
[626]791      /// \brief Return the first edge.
[57]792      ///
[626]793      /// This function gives back the first edge in the iteration order.
[57]794      void first(Edge&) const {}
795
[626]796      /// \brief Return the next edge.
[57]797      ///
[626]798      /// This function gives back the next edge in the iteration order.
[57]799      void next(Edge&) const {}
800
[626]801      /// \brief Return the first edge incident to the given node.
802      ///
803      /// This function gives back the first edge incident to the given
804      /// node. The bool parameter gives back the direction for which the
805      /// source node of the directed arc representing the edge is the
[57]806      /// given node.
807      void firstInc(Edge&, bool&, const Node&) const {}
808
809      /// \brief Gives back the next of the edges from the
810      /// given node.
811      ///
[626]812      /// This function gives back the next edge incident to the given
813      /// node. The bool parameter should be used as \c firstInc() use it.
[57]814      void nextInc(Edge&, bool&) const {}
815
[606]816      using IterableDigraphComponent<Base>::baseNode;
817      using IterableDigraphComponent<Base>::runningNode;
[57]818
819      /// @}
820
821      /// \name Class based iteration
[209]822      ///
[626]823      /// This interface provides iterator classes for edges.
[57]824      ///
825      /// @{
826
[626]827      /// \brief This iterator goes through each edge.
[57]828      ///
[626]829      /// This iterator goes through each edge.
[57]830      typedef GraphItemIt<Graph, Edge> EdgeIt;
[626]831
832      /// \brief This iterator goes trough the incident edges of a
[57]833      /// node.
834      ///
[626]835      /// This iterator goes trough the incident edges of a certain
[57]836      /// node of a graph.
[626]837      typedef GraphIncIt<Graph, Edge, Node, 'e'> IncEdgeIt;
838
[57]839      /// \brief The base node of the iterator.
840      ///
[626]841      /// This function gives back the base node of the iterator.
[78]842      Node baseNode(const IncEdgeIt&) const { return INVALID; }
[57]843
844      /// \brief The running node of the iterator.
845      ///
[626]846      /// This function gives back the running node of the iterator.
[78]847      Node runningNode(const IncEdgeIt&) const { return INVALID; }
[57]848
849      /// @}
850
[209]851      template <typename _Graph>
[57]852      struct Constraints {
[209]853        void constraints() {
854          checkConcept<IterableDigraphComponent<Base>, _Graph>();
[57]855
856          {
857            typename _Graph::Node node(INVALID);
858            typename _Graph::Edge edge(INVALID);
859            bool dir;
860            {
861              graph.first(edge);
862              graph.next(edge);
863            }
864            {
865              graph.firstInc(edge, dir, node);
866              graph.nextInc(edge, dir);
867            }
[209]868
869          }
870
[57]871          {
872            checkConcept<GraphItemIt<_Graph, typename _Graph::Edge>,
873              typename _Graph::EdgeIt >();
[209]874            checkConcept<GraphIncIt<_Graph, typename _Graph::Edge,
[626]875              typename _Graph::Node, 'e'>, typename _Graph::IncEdgeIt>();
[209]876
[57]877            typename _Graph::Node n;
[626]878            const typename _Graph::IncEdgeIt ieit(INVALID);
879            n = graph.baseNode(ieit);
880            n = graph.runningNode(ieit);
[57]881          }
882        }
[209]883
884        const _Graph& graph;
[57]885      };
886    };
887
[626]888    /// \brief Skeleton class for alterable directed graphs.
[209]889    ///
[626]890    /// This class describes the interface of alterable directed
891    /// graphs. It extends \ref BaseDigraphComponent with the alteration
892    /// notifier interface. It implements
[57]893    /// an observer-notifier pattern for each digraph item. More
894    /// obsevers can be registered into the notifier and whenever an
[626]895    /// alteration occured in the digraph all the observers will be
[57]896    /// notified about it.
[606]897    template <typename BAS = BaseDigraphComponent>
898    class AlterableDigraphComponent : public BAS {
[57]899    public:
900
[606]901      typedef BAS Base;
[57]902      typedef typename Base::Node Node;
903      typedef typename Base::Arc Arc;
904
905
[626]906      /// Node alteration notifier class.
[209]907      typedef AlterationNotifier<AlterableDigraphComponent, Node>
[57]908      NodeNotifier;
[626]909      /// Arc alteration notifier class.
[209]910      typedef AlterationNotifier<AlterableDigraphComponent, Arc>
[57]911      ArcNotifier;
[209]912
[626]913      /// \brief Return the node alteration notifier.
[57]914      ///
[626]915      /// This function gives back the node alteration notifier.
[57]916      NodeNotifier& notifier(Node) const {
[626]917         return NodeNotifier();
[57]918      }
[209]919
[626]920      /// \brief Return the arc alteration notifier.
[57]921      ///
[626]922      /// This function gives back the arc alteration notifier.
[57]923      ArcNotifier& notifier(Arc) const {
[209]924        return ArcNotifier();
[57]925      }
926
[209]927      template <typename _Digraph>
[57]928      struct Constraints {
[209]929        void constraints() {
930          checkConcept<Base, _Digraph>();
931          typename _Digraph::NodeNotifier& nn
[57]932            = digraph.notifier(typename _Digraph::Node());
933
[209]934          typename _Digraph::ArcNotifier& en
[57]935            = digraph.notifier(typename _Digraph::Arc());
[209]936
[57]937          ignore_unused_variable_warning(nn);
938          ignore_unused_variable_warning(en);
[209]939        }
940
941        const _Digraph& digraph;
[57]942      };
943    };
944
[626]945    /// \brief Skeleton class for alterable undirected graphs.
[209]946    ///
[626]947    /// This class describes the interface of alterable undirected
948    /// graphs. It extends \ref AlterableDigraphComponent with the alteration
949    /// notifier interface of undirected graphs. It implements
950    /// an observer-notifier pattern for the edges. More
[57]951    /// obsevers can be registered into the notifier and whenever an
[626]952    /// alteration occured in the graph all the observers will be
[57]953    /// notified about it.
[606]954    template <typename BAS = BaseGraphComponent>
955    class AlterableGraphComponent : public AlterableDigraphComponent<BAS> {
[57]956    public:
957
[606]958      typedef BAS Base;
[57]959      typedef typename Base::Edge Edge;
960
961
[626]962      /// Edge alteration notifier class.
[209]963      typedef AlterationNotifier<AlterableGraphComponent, Edge>
[57]964      EdgeNotifier;
[209]965
[626]966      /// \brief Return the edge alteration notifier.
[57]967      ///
[626]968      /// This function gives back the edge alteration notifier.
[57]969      EdgeNotifier& notifier(Edge) const {
[209]970        return EdgeNotifier();
[57]971      }
972
[209]973      template <typename _Graph>
[57]974      struct Constraints {
[209]975        void constraints() {
[626]976          checkConcept<AlterableDigraphComponent<Base>, _Graph>();
[209]977          typename _Graph::EdgeNotifier& uen
[57]978            = graph.notifier(typename _Graph::Edge());
979          ignore_unused_variable_warning(uen);
[209]980        }
981
982        const _Graph& graph;
[57]983      };
984    };
985
[626]986    /// \brief Concept class for standard graph maps.
[209]987    ///
[626]988    /// This class describes the concept of standard graph maps, i.e.
989    /// the \c NodeMap, \c ArcMap and \c EdgeMap subtypes of digraph and
990    /// graph types, which can be used for associating data to graph items.
[606]991    template <typename GR, typename K, typename V>
992    class GraphMap : public ReadWriteMap<K, V> {
[57]993    public:
994
[606]995      typedef ReadWriteMap<K, V> Parent;
[57]996
997      /// The graph type of the map.
[606]998      typedef GR Graph;
[57]999      /// The key type of the map.
[606]1000      typedef K Key;
[57]1001      /// The value type of the map.
[606]1002      typedef V Value;
[57]1003
1004      /// \brief Construct a new map.
1005      ///
1006      /// Construct a new map for the graph.
1007      explicit GraphMap(const Graph&) {}
1008      /// \brief Construct a new map with default value.
1009      ///
[626]1010      /// Construct a new map for the graph and initalize the values.
[57]1011      GraphMap(const Graph&, const Value&) {}
[263]1012
1013    private:
[57]1014      /// \brief Copy constructor.
1015      ///
1016      /// Copy Constructor.
1017      GraphMap(const GraphMap&) : Parent() {}
[209]1018
[626]1019      /// \brief Assignment operator.
[57]1020      ///
[626]1021      /// Assignment operator. It does not mofify the underlying graph,
[57]1022      /// it just iterates on the current item set and set the  map
[209]1023      /// with the value returned by the assigned map.
[57]1024      template <typename CMap>
[209]1025      GraphMap& operator=(const CMap&) {
[57]1026        checkConcept<ReadMap<Key, Value>, CMap>();
1027        return *this;
1028      }
1029
[263]1030    public:
[57]1031      template<typename _Map>
1032      struct Constraints {
[209]1033        void constraints() {
1034          checkConcept<ReadWriteMap<Key, Value>, _Map >();
[626]1035          _Map m1(g);
1036          _Map m2(g,t);
1037         
1038          // Copy constructor
1039          // _Map m3(m);
[209]1040
[626]1041          // Assignment operator
[263]1042          // ReadMap<Key, Value> cmap;
[626]1043          // m3 = cmap;
[57]1044
[626]1045          ignore_unused_variable_warning(m1);
1046          ignore_unused_variable_warning(m2);
1047          // ignore_unused_variable_warning(m3);
[209]1048        }
[57]1049
[626]1050        const _Map &m;
[209]1051        const Graph &g;
1052        const typename GraphMap::Value &t;
[57]1053      };
1054
1055    };
1056
[626]1057    /// \brief Skeleton class for mappable directed graphs.
[57]1058    ///
[626]1059    /// This class describes the interface of mappable directed graphs.
1060    /// It extends \ref BaseDigraphComponent with the standard digraph
1061    /// map classes, namely \c NodeMap and \c ArcMap.
[57]1062    /// This concept is part of the Digraph concept.
[606]1063    template <typename BAS = BaseDigraphComponent>
1064    class MappableDigraphComponent : public BAS  {
[57]1065    public:
1066
[606]1067      typedef BAS Base;
[57]1068      typedef typename Base::Node Node;
1069      typedef typename Base::Arc Arc;
1070
1071      typedef MappableDigraphComponent Digraph;
1072
[626]1073      /// \brief Standard graph map for the nodes.
[57]1074      ///
[626]1075      /// Standard graph map for the nodes.
[606]1076      template <typename V>
[626]1077      class NodeMap : public GraphMap<MappableDigraphComponent, Node, V> {
[57]1078      public:
[606]1079        typedef GraphMap<MappableDigraphComponent, Node, V> Parent;
[57]1080
[209]1081        /// \brief Construct a new map.
1082        ///
1083        /// Construct a new map for the digraph.
1084        explicit NodeMap(const MappableDigraphComponent& digraph)
[57]1085          : Parent(digraph) {}
1086
[209]1087        /// \brief Construct a new map with default value.
1088        ///
[626]1089        /// Construct a new map for the digraph and initalize the values.
[606]1090        NodeMap(const MappableDigraphComponent& digraph, const V& value)
[57]1091          : Parent(digraph, value) {}
1092
[263]1093      private:
[209]1094        /// \brief Copy constructor.
1095        ///
1096        /// Copy Constructor.
1097        NodeMap(const NodeMap& nm) : Parent(nm) {}
[57]1098
[626]1099        /// \brief Assignment operator.
[209]1100        ///
[626]1101        /// Assignment operator.
[57]1102        template <typename CMap>
[209]1103        NodeMap& operator=(const CMap&) {
[606]1104          checkConcept<ReadMap<Node, V>, CMap>();
[57]1105          return *this;
1106        }
1107
1108      };
1109
[626]1110      /// \brief Standard graph map for the arcs.
[57]1111      ///
[626]1112      /// Standard graph map for the arcs.
[606]1113      template <typename V>
[626]1114      class ArcMap : public GraphMap<MappableDigraphComponent, Arc, V> {
[57]1115      public:
[606]1116        typedef GraphMap<MappableDigraphComponent, Arc, V> Parent;
[57]1117
[209]1118        /// \brief Construct a new map.
1119        ///
1120        /// Construct a new map for the digraph.
1121        explicit ArcMap(const MappableDigraphComponent& digraph)
[57]1122          : Parent(digraph) {}
1123
[209]1124        /// \brief Construct a new map with default value.
1125        ///
[626]1126        /// Construct a new map for the digraph and initalize the values.
[606]1127        ArcMap(const MappableDigraphComponent& digraph, const V& value)
[57]1128          : Parent(digraph, value) {}
1129
[263]1130      private:
[209]1131        /// \brief Copy constructor.
1132        ///
1133        /// Copy Constructor.
1134        ArcMap(const ArcMap& nm) : Parent(nm) {}
[57]1135
[626]1136        /// \brief Assignment operator.
[209]1137        ///
[626]1138        /// Assignment operator.
[57]1139        template <typename CMap>
[209]1140        ArcMap& operator=(const CMap&) {
[606]1141          checkConcept<ReadMap<Arc, V>, CMap>();
[57]1142          return *this;
1143        }
1144
1145      };
1146
1147
1148      template <typename _Digraph>
1149      struct Constraints {
1150
[209]1151        struct Dummy {
1152          int value;
1153          Dummy() : value(0) {}
1154          Dummy(int _v) : value(_v) {}
1155        };
[57]1156
[209]1157        void constraints() {
1158          checkConcept<Base, _Digraph>();
1159          { // int map test
1160            typedef typename _Digraph::template NodeMap<int> IntNodeMap;
1161            checkConcept<GraphMap<_Digraph, typename _Digraph::Node, int>,
1162              IntNodeMap >();
1163          } { // bool map test
1164            typedef typename _Digraph::template NodeMap<bool> BoolNodeMap;
1165            checkConcept<GraphMap<_Digraph, typename _Digraph::Node, bool>,
1166              BoolNodeMap >();
1167          } { // Dummy map test
1168            typedef typename _Digraph::template NodeMap<Dummy> DummyNodeMap;
1169            checkConcept<GraphMap<_Digraph, typename _Digraph::Node, Dummy>,
1170              DummyNodeMap >();
1171          }
[57]1172
[209]1173          { // int map test
1174            typedef typename _Digraph::template ArcMap<int> IntArcMap;
1175            checkConcept<GraphMap<_Digraph, typename _Digraph::Arc, int>,
1176              IntArcMap >();
1177          } { // bool map test
1178            typedef typename _Digraph::template ArcMap<bool> BoolArcMap;
1179            checkConcept<GraphMap<_Digraph, typename _Digraph::Arc, bool>,
1180              BoolArcMap >();
1181          } { // Dummy map test
1182            typedef typename _Digraph::template ArcMap<Dummy> DummyArcMap;
1183            checkConcept<GraphMap<_Digraph, typename _Digraph::Arc, Dummy>,
1184              DummyArcMap >();
1185          }
1186        }
[57]1187
[626]1188        const _Digraph& digraph;
[57]1189      };
1190    };
1191
[626]1192    /// \brief Skeleton class for mappable undirected graphs.
[57]1193    ///
[626]1194    /// This class describes the interface of mappable undirected graphs.
1195    /// It extends \ref MappableDigraphComponent with the standard graph
1196    /// map class for edges (\c EdgeMap).
[57]1197    /// This concept is part of the Graph concept.
[606]1198    template <typename BAS = BaseGraphComponent>
1199    class MappableGraphComponent : public MappableDigraphComponent<BAS>  {
[57]1200    public:
1201
[606]1202      typedef BAS Base;
[57]1203      typedef typename Base::Edge Edge;
1204
1205      typedef MappableGraphComponent Graph;
1206
[626]1207      /// \brief Standard graph map for the edges.
[57]1208      ///
[626]1209      /// Standard graph map for the edges.
[606]1210      template <typename V>
[626]1211      class EdgeMap : public GraphMap<MappableGraphComponent, Edge, V> {
[57]1212      public:
[606]1213        typedef GraphMap<MappableGraphComponent, Edge, V> Parent;
[57]1214
[209]1215        /// \brief Construct a new map.
1216        ///
1217        /// Construct a new map for the graph.
1218        explicit EdgeMap(const MappableGraphComponent& graph)
[57]1219          : Parent(graph) {}
1220
[209]1221        /// \brief Construct a new map with default value.
1222        ///
[626]1223        /// Construct a new map for the graph and initalize the values.
[606]1224        EdgeMap(const MappableGraphComponent& graph, const V& value)
[57]1225          : Parent(graph, value) {}
1226
[263]1227      private:
[209]1228        /// \brief Copy constructor.
1229        ///
1230        /// Copy Constructor.
1231        EdgeMap(const EdgeMap& nm) : Parent(nm) {}
[57]1232
[626]1233        /// \brief Assignment operator.
[209]1234        ///
[626]1235        /// Assignment operator.
[57]1236        template <typename CMap>
[209]1237        EdgeMap& operator=(const CMap&) {
[606]1238          checkConcept<ReadMap<Edge, V>, CMap>();
[57]1239          return *this;
1240        }
1241
1242      };
1243
1244
1245      template <typename _Graph>
1246      struct Constraints {
1247
[209]1248        struct Dummy {
1249          int value;
1250          Dummy() : value(0) {}
1251          Dummy(int _v) : value(_v) {}
1252        };
[57]1253
[209]1254        void constraints() {
[626]1255          checkConcept<MappableDigraphComponent<Base>, _Graph>();
[57]1256
[209]1257          { // int map test
1258            typedef typename _Graph::template EdgeMap<int> IntEdgeMap;
1259            checkConcept<GraphMap<_Graph, typename _Graph::Edge, int>,
1260              IntEdgeMap >();
1261          } { // bool map test
1262            typedef typename _Graph::template EdgeMap<bool> BoolEdgeMap;
1263            checkConcept<GraphMap<_Graph, typename _Graph::Edge, bool>,
1264              BoolEdgeMap >();
1265          } { // Dummy map test
1266            typedef typename _Graph::template EdgeMap<Dummy> DummyEdgeMap;
1267            checkConcept<GraphMap<_Graph, typename _Graph::Edge, Dummy>,
1268              DummyEdgeMap >();
1269          }
1270        }
[57]1271
[626]1272        const _Graph& graph;
[57]1273      };
1274    };
1275
[626]1276    /// \brief Skeleton class for extendable directed graphs.
[57]1277    ///
[626]1278    /// This class describes the interface of extendable directed graphs.
1279    /// It extends \ref BaseDigraphComponent with functions for adding
1280    /// nodes and arcs to the digraph.
1281    /// This concept requires \ref AlterableDigraphComponent.
[606]1282    template <typename BAS = BaseDigraphComponent>
1283    class ExtendableDigraphComponent : public BAS {
[57]1284    public:
[606]1285      typedef BAS Base;
[57]1286
[606]1287      typedef typename Base::Node Node;
1288      typedef typename Base::Arc Arc;
[57]1289
[626]1290      /// \brief Add a new node to the digraph.
[57]1291      ///
[626]1292      /// This function adds a new node to the digraph.
[57]1293      Node addNode() {
[209]1294        return INVALID;
[57]1295      }
[209]1296
[626]1297      /// \brief Add a new arc connecting the given two nodes.
[57]1298      ///
[626]1299      /// This function adds a new arc connecting the given two nodes
1300      /// of the digraph.
[57]1301      Arc addArc(const Node&, const Node&) {
[209]1302        return INVALID;
[57]1303      }
1304
1305      template <typename _Digraph>
1306      struct Constraints {
[209]1307        void constraints() {
[57]1308          checkConcept<Base, _Digraph>();
[209]1309          typename _Digraph::Node node_a, node_b;
1310          node_a = digraph.addNode();
1311          node_b = digraph.addNode();
1312          typename _Digraph::Arc arc;
1313          arc = digraph.addArc(node_a, node_b);
1314        }
[57]1315
[209]1316        _Digraph& digraph;
[57]1317      };
1318    };
1319
[626]1320    /// \brief Skeleton class for extendable undirected graphs.
[57]1321    ///
[626]1322    /// This class describes the interface of extendable undirected graphs.
1323    /// It extends \ref BaseGraphComponent with functions for adding
1324    /// nodes and edges to the graph.
1325    /// This concept requires \ref AlterableGraphComponent.
[606]1326    template <typename BAS = BaseGraphComponent>
1327    class ExtendableGraphComponent : public BAS {
[57]1328    public:
1329
[606]1330      typedef BAS Base;
1331      typedef typename Base::Node Node;
1332      typedef typename Base::Edge Edge;
[57]1333
[626]1334      /// \brief Add a new node to the digraph.
[57]1335      ///
[626]1336      /// This function adds a new node to the digraph.
[57]1337      Node addNode() {
[209]1338        return INVALID;
[57]1339      }
[209]1340
[626]1341      /// \brief Add a new edge connecting the given two nodes.
[57]1342      ///
[626]1343      /// This function adds a new edge connecting the given two nodes
1344      /// of the graph.
1345      Edge addEdge(const Node&, const Node&) {
[209]1346        return INVALID;
[57]1347      }
1348
1349      template <typename _Graph>
1350      struct Constraints {
[209]1351        void constraints() {
1352          checkConcept<Base, _Graph>();
1353          typename _Graph::Node node_a, node_b;
1354          node_a = graph.addNode();
1355          node_b = graph.addNode();
1356          typename _Graph::Edge edge;
1357          edge = graph.addEdge(node_a, node_b);
1358        }
[57]1359
[209]1360        _Graph& graph;
[57]1361      };
1362    };
1363
[626]1364    /// \brief Skeleton class for erasable directed graphs.
[209]1365    ///
[626]1366    /// This class describes the interface of erasable directed graphs.
1367    /// It extends \ref BaseDigraphComponent with functions for removing
1368    /// nodes and arcs from the digraph.
1369    /// This concept requires \ref AlterableDigraphComponent.
[606]1370    template <typename BAS = BaseDigraphComponent>
1371    class ErasableDigraphComponent : public BAS {
[57]1372    public:
1373
[606]1374      typedef BAS Base;
[57]1375      typedef typename Base::Node Node;
1376      typedef typename Base::Arc Arc;
1377
1378      /// \brief Erase a node from the digraph.
1379      ///
[626]1380      /// This function erases the given node from the digraph and all arcs
1381      /// connected to the node.
[209]1382      void erase(const Node&) {}
[57]1383
1384      /// \brief Erase an arc from the digraph.
1385      ///
[626]1386      /// This function erases the given arc from the digraph.
[57]1387      void erase(const Arc&) {}
1388
1389      template <typename _Digraph>
1390      struct Constraints {
[209]1391        void constraints() {
[57]1392          checkConcept<Base, _Digraph>();
[626]1393          const typename _Digraph::Node node(INVALID);
[209]1394          digraph.erase(node);
[626]1395          const typename _Digraph::Arc arc(INVALID);
[209]1396          digraph.erase(arc);
1397        }
[57]1398
[209]1399        _Digraph& digraph;
[57]1400      };
1401    };
1402
[626]1403    /// \brief Skeleton class for erasable undirected graphs.
[209]1404    ///
[626]1405    /// This class describes the interface of erasable undirected graphs.
1406    /// It extends \ref BaseGraphComponent with functions for removing
1407    /// nodes and edges from the graph.
1408    /// This concept requires \ref AlterableGraphComponent.
[606]1409    template <typename BAS = BaseGraphComponent>
1410    class ErasableGraphComponent : public BAS {
[57]1411    public:
1412
[606]1413      typedef BAS Base;
[57]1414      typedef typename Base::Node Node;
1415      typedef typename Base::Edge Edge;
1416
1417      /// \brief Erase a node from the graph.
1418      ///
[626]1419      /// This function erases the given node from the graph and all edges
1420      /// connected to the node.
[209]1421      void erase(const Node&) {}
[57]1422
[626]1423      /// \brief Erase an edge from the digraph.
[57]1424      ///
[626]1425      /// This function erases the given edge from the digraph.
[57]1426      void erase(const Edge&) {}
1427
1428      template <typename _Graph>
1429      struct Constraints {
[209]1430        void constraints() {
[57]1431          checkConcept<Base, _Graph>();
[626]1432          const typename _Graph::Node node(INVALID);
[209]1433          graph.erase(node);
[626]1434          const typename _Graph::Edge edge(INVALID);
[209]1435          graph.erase(edge);
1436        }
[57]1437
[209]1438        _Graph& graph;
[57]1439      };
1440    };
1441
[626]1442    /// \brief Skeleton class for clearable directed graphs.
[57]1443    ///
[626]1444    /// This class describes the interface of clearable directed graphs.
1445    /// It extends \ref BaseDigraphComponent with a function for clearing
1446    /// the digraph.
1447    /// This concept requires \ref AlterableDigraphComponent.
[606]1448    template <typename BAS = BaseDigraphComponent>
1449    class ClearableDigraphComponent : public BAS {
[57]1450    public:
1451
[606]1452      typedef BAS Base;
[57]1453
1454      /// \brief Erase all nodes and arcs from the digraph.
1455      ///
[626]1456      /// This function erases all nodes and arcs from the digraph.
[209]1457      void clear() {}
[57]1458
1459      template <typename _Digraph>
1460      struct Constraints {
[209]1461        void constraints() {
[57]1462          checkConcept<Base, _Digraph>();
[209]1463          digraph.clear();
1464        }
[57]1465
[626]1466        _Digraph& digraph;
[57]1467      };
1468    };
1469
[626]1470    /// \brief Skeleton class for clearable undirected graphs.
[57]1471    ///
[626]1472    /// This class describes the interface of clearable undirected graphs.
1473    /// It extends \ref BaseGraphComponent with a function for clearing
1474    /// the graph.
1475    /// This concept requires \ref AlterableGraphComponent.
[606]1476    template <typename BAS = BaseGraphComponent>
1477    class ClearableGraphComponent : public ClearableDigraphComponent<BAS> {
[57]1478    public:
1479
[606]1480      typedef BAS Base;
[57]1481
[626]1482      /// \brief Erase all nodes and edges from the graph.
1483      ///
1484      /// This function erases all nodes and edges from the graph.
1485      void clear() {}
1486
[57]1487      template <typename _Graph>
1488      struct Constraints {
[209]1489        void constraints() {
[626]1490          checkConcept<Base, _Graph>();
1491          graph.clear();
[209]1492        }
[57]1493
[626]1494        _Graph& graph;
[57]1495      };
1496    };
1497
1498  }
1499
1500}
1501
1502#endif
Note: See TracBrowser for help on using the repository browser.