gravatar
kpeter (Peter Kovacs)
kpeter@inf.elte.hu
Various improvements and fixes (mainly in the doc) (#190)
0 2 0
default
2 files changed with 441 insertions and 429 deletions:
↑ Collapse diff ↑
Ignore white space 768 line context
... ...
@@ -1811,768 +1811,771 @@
1811 1811
  FilterEdges<const GR, const EF>
1812 1812
  filterEdges(const GR& graph, const EF& edge_filter) {
1813 1813
    return FilterEdges<const GR, const EF>(graph, edge_filter);
1814 1814
  }
1815 1815

	
1816 1816

	
1817 1817
  template <typename DGR>
1818 1818
  class UndirectorBase {
1819 1819
  public:
1820 1820
    typedef DGR Digraph;
1821 1821
    typedef UndirectorBase Adaptor;
1822 1822

	
1823 1823
    typedef True UndirectedTag;
1824 1824

	
1825 1825
    typedef typename Digraph::Arc Edge;
1826 1826
    typedef typename Digraph::Node Node;
1827 1827

	
1828 1828
    class Arc : public Edge {
1829 1829
      friend class UndirectorBase;
1830 1830
    protected:
1831 1831
      bool _forward;
1832 1832

	
1833 1833
      Arc(const Edge& edge, bool forward) :
1834 1834
        Edge(edge), _forward(forward) {}
1835 1835

	
1836 1836
    public:
1837 1837
      Arc() {}
1838 1838

	
1839 1839
      Arc(Invalid) : Edge(INVALID), _forward(true) {}
1840 1840

	
1841 1841
      bool operator==(const Arc &other) const {
1842 1842
        return _forward == other._forward &&
1843 1843
          static_cast<const Edge&>(*this) == static_cast<const Edge&>(other);
1844 1844
      }
1845 1845
      bool operator!=(const Arc &other) const {
1846 1846
        return _forward != other._forward ||
1847 1847
          static_cast<const Edge&>(*this) != static_cast<const Edge&>(other);
1848 1848
      }
1849 1849
      bool operator<(const Arc &other) const {
1850 1850
        return _forward < other._forward ||
1851 1851
          (_forward == other._forward &&
1852 1852
           static_cast<const Edge&>(*this) < static_cast<const Edge&>(other));
1853 1853
      }
1854 1854
    };
1855 1855

	
1856 1856
    void first(Node& n) const {
1857 1857
      _digraph->first(n);
1858 1858
    }
1859 1859

	
1860 1860
    void next(Node& n) const {
1861 1861
      _digraph->next(n);
1862 1862
    }
1863 1863

	
1864 1864
    void first(Arc& a) const {
1865 1865
      _digraph->first(a);
1866 1866
      a._forward = true;
1867 1867
    }
1868 1868

	
1869 1869
    void next(Arc& a) const {
1870 1870
      if (a._forward) {
1871 1871
        a._forward = false;
1872 1872
      } else {
1873 1873
        _digraph->next(a);
1874 1874
        a._forward = true;
1875 1875
      }
1876 1876
    }
1877 1877

	
1878 1878
    void first(Edge& e) const {
1879 1879
      _digraph->first(e);
1880 1880
    }
1881 1881

	
1882 1882
    void next(Edge& e) const {
1883 1883
      _digraph->next(e);
1884 1884
    }
1885 1885

	
1886 1886
    void firstOut(Arc& a, const Node& n) const {
1887 1887
      _digraph->firstIn(a, n);
1888 1888
      if( static_cast<const Edge&>(a) != INVALID ) {
1889 1889
        a._forward = false;
1890 1890
      } else {
1891 1891
        _digraph->firstOut(a, n);
1892 1892
        a._forward = true;
1893 1893
      }
1894 1894
    }
1895 1895
    void nextOut(Arc &a) const {
1896 1896
      if (!a._forward) {
1897 1897
        Node n = _digraph->target(a);
1898 1898
        _digraph->nextIn(a);
1899 1899
        if (static_cast<const Edge&>(a) == INVALID ) {
1900 1900
          _digraph->firstOut(a, n);
1901 1901
          a._forward = true;
1902 1902
        }
1903 1903
      }
1904 1904
      else {
1905 1905
        _digraph->nextOut(a);
1906 1906
      }
1907 1907
    }
1908 1908

	
1909 1909
    void firstIn(Arc &a, const Node &n) const {
1910 1910
      _digraph->firstOut(a, n);
1911 1911
      if (static_cast<const Edge&>(a) != INVALID ) {
1912 1912
        a._forward = false;
1913 1913
      } else {
1914 1914
        _digraph->firstIn(a, n);
1915 1915
        a._forward = true;
1916 1916
      }
1917 1917
    }
1918 1918
    void nextIn(Arc &a) const {
1919 1919
      if (!a._forward) {
1920 1920
        Node n = _digraph->source(a);
1921 1921
        _digraph->nextOut(a);
1922 1922
        if( static_cast<const Edge&>(a) == INVALID ) {
1923 1923
          _digraph->firstIn(a, n);
1924 1924
          a._forward = true;
1925 1925
        }
1926 1926
      }
1927 1927
      else {
1928 1928
        _digraph->nextIn(a);
1929 1929
      }
1930 1930
    }
1931 1931

	
1932 1932
    void firstInc(Edge &e, bool &d, const Node &n) const {
1933 1933
      d = true;
1934 1934
      _digraph->firstOut(e, n);
1935 1935
      if (e != INVALID) return;
1936 1936
      d = false;
1937 1937
      _digraph->firstIn(e, n);
1938 1938
    }
1939 1939

	
1940 1940
    void nextInc(Edge &e, bool &d) const {
1941 1941
      if (d) {
1942 1942
        Node s = _digraph->source(e);
1943 1943
        _digraph->nextOut(e);
1944 1944
        if (e != INVALID) return;
1945 1945
        d = false;
1946 1946
        _digraph->firstIn(e, s);
1947 1947
      } else {
1948 1948
        _digraph->nextIn(e);
1949 1949
      }
1950 1950
    }
1951 1951

	
1952 1952
    Node u(const Edge& e) const {
1953 1953
      return _digraph->source(e);
1954 1954
    }
1955 1955

	
1956 1956
    Node v(const Edge& e) const {
1957 1957
      return _digraph->target(e);
1958 1958
    }
1959 1959

	
1960 1960
    Node source(const Arc &a) const {
1961 1961
      return a._forward ? _digraph->source(a) : _digraph->target(a);
1962 1962
    }
1963 1963

	
1964 1964
    Node target(const Arc &a) const {
1965 1965
      return a._forward ? _digraph->target(a) : _digraph->source(a);
1966 1966
    }
1967 1967

	
1968 1968
    static Arc direct(const Edge &e, bool d) {
1969 1969
      return Arc(e, d);
1970 1970
    }
1971 1971
    Arc direct(const Edge &e, const Node& n) const {
1972 1972
      return Arc(e, _digraph->source(e) == n);
1973 1973
    }
1974 1974

	
1975 1975
    static bool direction(const Arc &a) { return a._forward; }
1976 1976

	
1977 1977
    Node nodeFromId(int ix) const { return _digraph->nodeFromId(ix); }
1978 1978
    Arc arcFromId(int ix) const {
1979 1979
      return direct(_digraph->arcFromId(ix >> 1), bool(ix & 1));
1980 1980
    }
1981 1981
    Edge edgeFromId(int ix) const { return _digraph->arcFromId(ix); }
1982 1982

	
1983 1983
    int id(const Node &n) const { return _digraph->id(n); }
1984 1984
    int id(const Arc &a) const {
1985 1985
      return  (_digraph->id(a) << 1) | (a._forward ? 1 : 0);
1986 1986
    }
1987 1987
    int id(const Edge &e) const { return _digraph->id(e); }
1988 1988

	
1989 1989
    int maxNodeId() const { return _digraph->maxNodeId(); }
1990 1990
    int maxArcId() const { return (_digraph->maxArcId() << 1) | 1; }
1991 1991
    int maxEdgeId() const { return _digraph->maxArcId(); }
1992 1992

	
1993 1993
    Node addNode() { return _digraph->addNode(); }
1994 1994
    Edge addEdge(const Node& u, const Node& v) {
1995 1995
      return _digraph->addArc(u, v);
1996 1996
    }
1997 1997

	
1998 1998
    void erase(const Node& i) { _digraph->erase(i); }
1999 1999
    void erase(const Edge& i) { _digraph->erase(i); }
2000 2000

	
2001 2001
    void clear() { _digraph->clear(); }
2002 2002

	
2003 2003
    typedef NodeNumTagIndicator<Digraph> NodeNumTag;
2004 2004
    int nodeNum() const { return _digraph->nodeNum(); }
2005 2005

	
2006 2006
    typedef ArcNumTagIndicator<Digraph> ArcNumTag;
2007 2007
    int arcNum() const { return 2 * _digraph->arcNum(); }
2008 2008

	
2009 2009
    typedef ArcNumTag EdgeNumTag;
2010 2010
    int edgeNum() const { return _digraph->arcNum(); }
2011 2011

	
2012 2012
    typedef FindArcTagIndicator<Digraph> FindArcTag;
2013 2013
    Arc findArc(Node s, Node t, Arc p = INVALID) const {
2014 2014
      if (p == INVALID) {
2015 2015
        Edge arc = _digraph->findArc(s, t);
2016 2016
        if (arc != INVALID) return direct(arc, true);
2017 2017
        arc = _digraph->findArc(t, s);
2018 2018
        if (arc != INVALID) return direct(arc, false);
2019 2019
      } else if (direction(p)) {
2020 2020
        Edge arc = _digraph->findArc(s, t, p);
2021 2021
        if (arc != INVALID) return direct(arc, true);
2022 2022
        arc = _digraph->findArc(t, s);
2023 2023
        if (arc != INVALID) return direct(arc, false);
2024 2024
      } else {
2025 2025
        Edge arc = _digraph->findArc(t, s, p);
2026 2026
        if (arc != INVALID) return direct(arc, false);
2027 2027
      }
2028 2028
      return INVALID;
2029 2029
    }
2030 2030

	
2031 2031
    typedef FindArcTag FindEdgeTag;
2032 2032
    Edge findEdge(Node s, Node t, Edge p = INVALID) const {
2033 2033
      if (s != t) {
2034 2034
        if (p == INVALID) {
2035 2035
          Edge arc = _digraph->findArc(s, t);
2036 2036
          if (arc != INVALID) return arc;
2037 2037
          arc = _digraph->findArc(t, s);
2038 2038
          if (arc != INVALID) return arc;
2039 2039
        } else if (_digraph->source(p) == s) {
2040 2040
          Edge arc = _digraph->findArc(s, t, p);
2041 2041
          if (arc != INVALID) return arc;
2042 2042
          arc = _digraph->findArc(t, s);
2043 2043
          if (arc != INVALID) return arc;
2044 2044
        } else {
2045 2045
          Edge arc = _digraph->findArc(t, s, p);
2046 2046
          if (arc != INVALID) return arc;
2047 2047
        }
2048 2048
      } else {
2049 2049
        return _digraph->findArc(s, t, p);
2050 2050
      }
2051 2051
      return INVALID;
2052 2052
    }
2053 2053

	
2054 2054
  private:
2055 2055

	
2056 2056
    template <typename V>
2057 2057
    class ArcMapBase {
2058 2058
    private:
2059 2059

	
2060 2060
      typedef typename DGR::template ArcMap<V> MapImpl;
2061 2061

	
2062 2062
    public:
2063 2063

	
2064 2064
      typedef typename MapTraits<MapImpl>::ReferenceMapTag ReferenceMapTag;
2065 2065

	
2066 2066
      typedef V Value;
2067 2067
      typedef Arc Key;
2068 2068
      typedef typename MapTraits<MapImpl>::ConstReturnValue ConstReturnValue;
2069 2069
      typedef typename MapTraits<MapImpl>::ReturnValue ReturnValue;
2070 2070
      typedef typename MapTraits<MapImpl>::ConstReturnValue ConstReference;
2071 2071
      typedef typename MapTraits<MapImpl>::ReturnValue Reference;
2072 2072

	
2073 2073
      ArcMapBase(const UndirectorBase<DGR>& adaptor) :
2074 2074
        _forward(*adaptor._digraph), _backward(*adaptor._digraph) {}
2075 2075

	
2076 2076
      ArcMapBase(const UndirectorBase<DGR>& adaptor, const V& value)
2077 2077
        : _forward(*adaptor._digraph, value), 
2078 2078
          _backward(*adaptor._digraph, value) {}
2079 2079

	
2080 2080
      void set(const Arc& a, const V& value) {
2081 2081
        if (direction(a)) {
2082 2082
          _forward.set(a, value);
2083 2083
        } else {
2084 2084
          _backward.set(a, value);
2085 2085
        }
2086 2086
      }
2087 2087

	
2088 2088
      ConstReturnValue operator[](const Arc& a) const {
2089 2089
        if (direction(a)) {
2090 2090
          return _forward[a];
2091 2091
        } else {
2092 2092
          return _backward[a];
2093 2093
        }
2094 2094
      }
2095 2095

	
2096 2096
      ReturnValue operator[](const Arc& a) {
2097 2097
        if (direction(a)) {
2098 2098
          return _forward[a];
2099 2099
        } else {
2100 2100
          return _backward[a];
2101 2101
        }
2102 2102
      }
2103 2103

	
2104 2104
    protected:
2105 2105

	
2106 2106
      MapImpl _forward, _backward;
2107 2107

	
2108 2108
    };
2109 2109

	
2110 2110
  public:
2111 2111

	
2112 2112
    template <typename V>
2113 2113
    class NodeMap : public DGR::template NodeMap<V> {
2114 2114
    public:
2115 2115

	
2116 2116
      typedef V Value;
2117 2117
      typedef typename DGR::template NodeMap<Value> Parent;
2118 2118

	
2119 2119
      explicit NodeMap(const UndirectorBase<DGR>& adaptor)
2120 2120
        : Parent(*adaptor._digraph) {}
2121 2121

	
2122 2122
      NodeMap(const UndirectorBase<DGR>& adaptor, const V& value)
2123 2123
        : Parent(*adaptor._digraph, value) { }
2124 2124

	
2125 2125
    private:
2126 2126
      NodeMap& operator=(const NodeMap& cmap) {
2127 2127
        return operator=<NodeMap>(cmap);
2128 2128
      }
2129 2129

	
2130 2130
      template <typename CMap>
2131 2131
      NodeMap& operator=(const CMap& cmap) {
2132 2132
        Parent::operator=(cmap);
2133 2133
        return *this;
2134 2134
      }
2135 2135

	
2136 2136
    };
2137 2137

	
2138 2138
    template <typename V>
2139 2139
    class ArcMap
2140 2140
      : public SubMapExtender<UndirectorBase<DGR>, ArcMapBase<V> >
2141 2141
    {
2142 2142
    public:
2143 2143
      typedef V Value;
2144 2144
      typedef SubMapExtender<Adaptor, ArcMapBase<V> > Parent;
2145 2145

	
2146 2146
      explicit ArcMap(const UndirectorBase<DGR>& adaptor)
2147 2147
        : Parent(adaptor) {}
2148 2148

	
2149 2149
      ArcMap(const UndirectorBase<DGR>& adaptor, const V& value)
2150 2150
        : Parent(adaptor, value) {}
2151 2151

	
2152 2152
    private:
2153 2153
      ArcMap& operator=(const ArcMap& cmap) {
2154 2154
        return operator=<ArcMap>(cmap);
2155 2155
      }
2156 2156

	
2157 2157
      template <typename CMap>
2158 2158
      ArcMap& operator=(const CMap& cmap) {
2159 2159
        Parent::operator=(cmap);
2160 2160
        return *this;
2161 2161
      }
2162 2162
    };
2163 2163

	
2164 2164
    template <typename V>
2165 2165
    class EdgeMap : public Digraph::template ArcMap<V> {
2166 2166
    public:
2167 2167

	
2168 2168
      typedef V Value;
2169 2169
      typedef typename Digraph::template ArcMap<V> Parent;
2170 2170

	
2171 2171
      explicit EdgeMap(const UndirectorBase<DGR>& adaptor)
2172 2172
        : Parent(*adaptor._digraph) {}
2173 2173

	
2174 2174
      EdgeMap(const UndirectorBase<DGR>& adaptor, const V& value)
2175 2175
        : Parent(*adaptor._digraph, value) {}
2176 2176

	
2177 2177
    private:
2178 2178
      EdgeMap& operator=(const EdgeMap& cmap) {
2179 2179
        return operator=<EdgeMap>(cmap);
2180 2180
      }
2181 2181

	
2182 2182
      template <typename CMap>
2183 2183
      EdgeMap& operator=(const CMap& cmap) {
2184 2184
        Parent::operator=(cmap);
2185 2185
        return *this;
2186 2186
      }
2187 2187

	
2188 2188
    };
2189 2189

	
2190 2190
    typedef typename ItemSetTraits<DGR, Node>::ItemNotifier NodeNotifier;
2191 2191
    NodeNotifier& notifier(Node) const { return _digraph->notifier(Node()); }
2192 2192

	
2193 2193
    typedef typename ItemSetTraits<DGR, Edge>::ItemNotifier EdgeNotifier;
2194 2194
    EdgeNotifier& notifier(Edge) const { return _digraph->notifier(Edge()); }
2195
    
2196
    typedef EdgeNotifier ArcNotifier;
2197
    ArcNotifier& notifier(Arc) const { return _digraph->notifier(Edge()); }
2195 2198

	
2196 2199
  protected:
2197 2200

	
2198 2201
    UndirectorBase() : _digraph(0) {}
2199 2202

	
2200 2203
    DGR* _digraph;
2201 2204

	
2202 2205
    void initialize(DGR& digraph) {
2203 2206
      _digraph = &digraph;
2204 2207
    }
2205 2208

	
2206 2209
  };
2207 2210

	
2208 2211
  /// \ingroup graph_adaptors
2209 2212
  ///
2210 2213
  /// \brief Adaptor class for viewing a digraph as an undirected graph.
2211 2214
  ///
2212 2215
  /// Undirector adaptor can be used for viewing a digraph as an undirected
2213 2216
  /// graph. All arcs of the underlying digraph are showed in the
2214 2217
  /// adaptor as an edge (and also as a pair of arcs, of course).
2215 2218
  /// This adaptor conforms to the \ref concepts::Graph "Graph" concept.
2216 2219
  ///
2217 2220
  /// The adapted digraph can also be modified through this adaptor
2218 2221
  /// by adding or removing nodes or edges, unless the \c GR template
2219 2222
  /// parameter is set to be \c const.
2220 2223
  ///
2221 2224
  /// \tparam DGR The type of the adapted digraph.
2222 2225
  /// It must conform to the \ref concepts::Digraph "Digraph" concept.
2223 2226
  /// It can also be specified to be \c const.
2224 2227
  ///
2225 2228
  /// \note The \c Node type of this adaptor and the adapted digraph are
2226 2229
  /// convertible to each other, moreover the \c Edge type of the adaptor
2227 2230
  /// and the \c Arc type of the adapted digraph are also convertible to
2228 2231
  /// each other.
2229 2232
  /// (Thus the \c Arc type of the adaptor is convertible to the \c Arc type
2230 2233
  /// of the adapted digraph.)
2231 2234
  template<typename DGR>
2232 2235
#ifdef DOXYGEN
2233 2236
  class Undirector {
2234 2237
#else
2235 2238
  class Undirector :
2236 2239
    public GraphAdaptorExtender<UndirectorBase<DGR> > {
2237 2240
#endif
2238 2241
  public:
2239 2242
    /// The type of the adapted digraph.
2240 2243
    typedef DGR Digraph;
2241 2244
    typedef GraphAdaptorExtender<UndirectorBase<DGR> > Parent;
2242 2245
  protected:
2243 2246
    Undirector() { }
2244 2247
  public:
2245 2248

	
2246 2249
    /// \brief Constructor
2247 2250
    ///
2248 2251
    /// Creates an undirected graph from the given digraph.
2249 2252
    Undirector(DGR& digraph) {
2250 2253
      initialize(digraph);
2251 2254
    }
2252 2255

	
2253 2256
    /// \brief Arc map combined from two original arc maps
2254 2257
    ///
2255 2258
    /// This map adaptor class adapts two arc maps of the underlying
2256 2259
    /// digraph to get an arc map of the undirected graph.
2257 2260
    /// Its value type is inherited from the first arc map type (\c FW).
2258 2261
    /// \tparam FW The type of the "foward" arc map.
2259 2262
    /// \tparam BK The type of the "backward" arc map.
2260 2263
    template <typename FW, typename BK>
2261 2264
    class CombinedArcMap {
2262 2265
    public:
2263 2266

	
2264 2267
      /// The key type of the map
2265 2268
      typedef typename Parent::Arc Key;
2266 2269
      /// The value type of the map
2267 2270
      typedef typename FW::Value Value;
2268 2271

	
2269 2272
      typedef typename MapTraits<FW>::ReferenceMapTag ReferenceMapTag;
2270 2273

	
2271 2274
      typedef typename MapTraits<FW>::ReturnValue ReturnValue;
2272 2275
      typedef typename MapTraits<FW>::ConstReturnValue ConstReturnValue;
2273 2276
      typedef typename MapTraits<FW>::ReturnValue Reference;
2274 2277
      typedef typename MapTraits<FW>::ConstReturnValue ConstReference;
2275 2278

	
2276 2279
      /// Constructor
2277 2280
      CombinedArcMap(FW& forward, BK& backward)
2278 2281
        : _forward(&forward), _backward(&backward) {}
2279 2282

	
2280 2283
      /// Sets the value associated with the given key.
2281 2284
      void set(const Key& e, const Value& a) {
2282 2285
        if (Parent::direction(e)) {
2283 2286
          _forward->set(e, a);
2284 2287
        } else {
2285 2288
          _backward->set(e, a);
2286 2289
        }
2287 2290
      }
2288 2291

	
2289 2292
      /// Returns the value associated with the given key.
2290 2293
      ConstReturnValue operator[](const Key& e) const {
2291 2294
        if (Parent::direction(e)) {
2292 2295
          return (*_forward)[e];
2293 2296
        } else {
2294 2297
          return (*_backward)[e];
2295 2298
        }
2296 2299
      }
2297 2300

	
2298 2301
      /// Returns a reference to the value associated with the given key.
2299 2302
      ReturnValue operator[](const Key& e) {
2300 2303
        if (Parent::direction(e)) {
2301 2304
          return (*_forward)[e];
2302 2305
        } else {
2303 2306
          return (*_backward)[e];
2304 2307
        }
2305 2308
      }
2306 2309

	
2307 2310
    protected:
2308 2311

	
2309 2312
      FW* _forward;
2310 2313
      BK* _backward;
2311 2314

	
2312 2315
    };
2313 2316

	
2314 2317
    /// \brief Returns a combined arc map
2315 2318
    ///
2316 2319
    /// This function just returns a combined arc map.
2317 2320
    template <typename FW, typename BK>
2318 2321
    static CombinedArcMap<FW, BK>
2319 2322
    combinedArcMap(FW& forward, BK& backward) {
2320 2323
      return CombinedArcMap<FW, BK>(forward, backward);
2321 2324
    }
2322 2325

	
2323 2326
    template <typename FW, typename BK>
2324 2327
    static CombinedArcMap<const FW, BK>
2325 2328
    combinedArcMap(const FW& forward, BK& backward) {
2326 2329
      return CombinedArcMap<const FW, BK>(forward, backward);
2327 2330
    }
2328 2331

	
2329 2332
    template <typename FW, typename BK>
2330 2333
    static CombinedArcMap<FW, const BK>
2331 2334
    combinedArcMap(FW& forward, const BK& backward) {
2332 2335
      return CombinedArcMap<FW, const BK>(forward, backward);
2333 2336
    }
2334 2337

	
2335 2338
    template <typename FW, typename BK>
2336 2339
    static CombinedArcMap<const FW, const BK>
2337 2340
    combinedArcMap(const FW& forward, const BK& backward) {
2338 2341
      return CombinedArcMap<const FW, const BK>(forward, backward);
2339 2342
    }
2340 2343

	
2341 2344
  };
2342 2345

	
2343 2346
  /// \brief Returns a read-only Undirector adaptor
2344 2347
  ///
2345 2348
  /// This function just returns a read-only \ref Undirector adaptor.
2346 2349
  /// \ingroup graph_adaptors
2347 2350
  /// \relates Undirector
2348 2351
  template<typename DGR>
2349 2352
  Undirector<const DGR> undirector(const DGR& digraph) {
2350 2353
    return Undirector<const DGR>(digraph);
2351 2354
  }
2352 2355

	
2353 2356

	
2354 2357
  template <typename GR, typename DM>
2355 2358
  class OrienterBase {
2356 2359
  public:
2357 2360

	
2358 2361
    typedef GR Graph;
2359 2362
    typedef DM DirectionMap;
2360 2363

	
2361 2364
    typedef typename GR::Node Node;
2362 2365
    typedef typename GR::Edge Arc;
2363 2366

	
2364 2367
    void reverseArc(const Arc& arc) {
2365 2368
      _direction->set(arc, !(*_direction)[arc]);
2366 2369
    }
2367 2370

	
2368 2371
    void first(Node& i) const { _graph->first(i); }
2369 2372
    void first(Arc& i) const { _graph->first(i); }
2370 2373
    void firstIn(Arc& i, const Node& n) const {
2371 2374
      bool d = true;
2372 2375
      _graph->firstInc(i, d, n);
2373 2376
      while (i != INVALID && d == (*_direction)[i]) _graph->nextInc(i, d);
2374 2377
    }
2375 2378
    void firstOut(Arc& i, const Node& n ) const {
2376 2379
      bool d = true;
2377 2380
      _graph->firstInc(i, d, n);
2378 2381
      while (i != INVALID && d != (*_direction)[i]) _graph->nextInc(i, d);
2379 2382
    }
2380 2383

	
2381 2384
    void next(Node& i) const { _graph->next(i); }
2382 2385
    void next(Arc& i) const { _graph->next(i); }
2383 2386
    void nextIn(Arc& i) const {
2384 2387
      bool d = !(*_direction)[i];
2385 2388
      _graph->nextInc(i, d);
2386 2389
      while (i != INVALID && d == (*_direction)[i]) _graph->nextInc(i, d);
2387 2390
    }
2388 2391
    void nextOut(Arc& i) const {
2389 2392
      bool d = (*_direction)[i];
2390 2393
      _graph->nextInc(i, d);
2391 2394
      while (i != INVALID && d != (*_direction)[i]) _graph->nextInc(i, d);
2392 2395
    }
2393 2396

	
2394 2397
    Node source(const Arc& e) const {
2395 2398
      return (*_direction)[e] ? _graph->u(e) : _graph->v(e);
2396 2399
    }
2397 2400
    Node target(const Arc& e) const {
2398 2401
      return (*_direction)[e] ? _graph->v(e) : _graph->u(e);
2399 2402
    }
2400 2403

	
2401 2404
    typedef NodeNumTagIndicator<Graph> NodeNumTag;
2402 2405
    int nodeNum() const { return _graph->nodeNum(); }
2403 2406

	
2404 2407
    typedef EdgeNumTagIndicator<Graph> ArcNumTag;
2405 2408
    int arcNum() const { return _graph->edgeNum(); }
2406 2409

	
2407 2410
    typedef FindEdgeTagIndicator<Graph> FindArcTag;
2408 2411
    Arc findArc(const Node& u, const Node& v,
2409 2412
                const Arc& prev = INVALID) const {
2410 2413
      Arc arc = _graph->findEdge(u, v, prev);
2411 2414
      while (arc != INVALID && source(arc) != u) {
2412 2415
        arc = _graph->findEdge(u, v, arc);
2413 2416
      }
2414 2417
      return arc;
2415 2418
    }
2416 2419

	
2417 2420
    Node addNode() {
2418 2421
      return Node(_graph->addNode());
2419 2422
    }
2420 2423

	
2421 2424
    Arc addArc(const Node& u, const Node& v) {
2422 2425
      Arc arc = _graph->addEdge(u, v);
2423 2426
      _direction->set(arc, _graph->u(arc) == u);
2424 2427
      return arc;
2425 2428
    }
2426 2429

	
2427 2430
    void erase(const Node& i) { _graph->erase(i); }
2428 2431
    void erase(const Arc& i) { _graph->erase(i); }
2429 2432

	
2430 2433
    void clear() { _graph->clear(); }
2431 2434

	
2432 2435
    int id(const Node& v) const { return _graph->id(v); }
2433 2436
    int id(const Arc& e) const { return _graph->id(e); }
2434 2437

	
2435 2438
    Node nodeFromId(int idx) const { return _graph->nodeFromId(idx); }
2436 2439
    Arc arcFromId(int idx) const { return _graph->edgeFromId(idx); }
2437 2440

	
2438 2441
    int maxNodeId() const { return _graph->maxNodeId(); }
2439 2442
    int maxArcId() const { return _graph->maxEdgeId(); }
2440 2443

	
2441 2444
    typedef typename ItemSetTraits<GR, Node>::ItemNotifier NodeNotifier;
2442 2445
    NodeNotifier& notifier(Node) const { return _graph->notifier(Node()); }
2443 2446

	
2444 2447
    typedef typename ItemSetTraits<GR, Arc>::ItemNotifier ArcNotifier;
2445 2448
    ArcNotifier& notifier(Arc) const { return _graph->notifier(Arc()); }
2446 2449

	
2447 2450
    template <typename V>
2448 2451
    class NodeMap : public GR::template NodeMap<V> {
2449 2452
    public:
2450 2453

	
2451 2454
      typedef typename GR::template NodeMap<V> Parent;
2452 2455

	
2453 2456
      explicit NodeMap(const OrienterBase<GR, DM>& adapter)
2454 2457
        : Parent(*adapter._graph) {}
2455 2458

	
2456 2459
      NodeMap(const OrienterBase<GR, DM>& adapter, const V& value)
2457 2460
        : Parent(*adapter._graph, value) {}
2458 2461

	
2459 2462
    private:
2460 2463
      NodeMap& operator=(const NodeMap& cmap) {
2461 2464
        return operator=<NodeMap>(cmap);
2462 2465
      }
2463 2466

	
2464 2467
      template <typename CMap>
2465 2468
      NodeMap& operator=(const CMap& cmap) {
2466 2469
        Parent::operator=(cmap);
2467 2470
        return *this;
2468 2471
      }
2469 2472

	
2470 2473
    };
2471 2474

	
2472 2475
    template <typename V>
2473 2476
    class ArcMap : public GR::template EdgeMap<V> {
2474 2477
    public:
2475 2478

	
2476 2479
      typedef typename Graph::template EdgeMap<V> Parent;
2477 2480

	
2478 2481
      explicit ArcMap(const OrienterBase<GR, DM>& adapter)
2479 2482
        : Parent(*adapter._graph) { }
2480 2483

	
2481 2484
      ArcMap(const OrienterBase<GR, DM>& adapter, const V& value)
2482 2485
        : Parent(*adapter._graph, value) { }
2483 2486

	
2484 2487
    private:
2485 2488
      ArcMap& operator=(const ArcMap& cmap) {
2486 2489
        return operator=<ArcMap>(cmap);
2487 2490
      }
2488 2491

	
2489 2492
      template <typename CMap>
2490 2493
      ArcMap& operator=(const CMap& cmap) {
2491 2494
        Parent::operator=(cmap);
2492 2495
        return *this;
2493 2496
      }
2494 2497
    };
2495 2498

	
2496 2499

	
2497 2500

	
2498 2501
  protected:
2499 2502
    Graph* _graph;
2500 2503
    DM* _direction;
2501 2504

	
2502 2505
    void initialize(GR& graph, DM& direction) {
2503 2506
      _graph = &graph;
2504 2507
      _direction = &direction;
2505 2508
    }
2506 2509

	
2507 2510
  };
2508 2511

	
2509 2512
  /// \ingroup graph_adaptors
2510 2513
  ///
2511 2514
  /// \brief Adaptor class for orienting the edges of a graph to get a digraph
2512 2515
  ///
2513 2516
  /// Orienter adaptor can be used for orienting the edges of a graph to
2514 2517
  /// get a digraph. A \c bool edge map of the underlying graph must be
2515 2518
  /// specified, which define the direction of the arcs in the adaptor.
2516 2519
  /// The arcs can be easily reversed by the \c reverseArc() member function
2517 2520
  /// of the adaptor.
2518 2521
  /// This class conforms to the \ref concepts::Digraph "Digraph" concept.
2519 2522
  ///
2520 2523
  /// The adapted graph can also be modified through this adaptor
2521 2524
  /// by adding or removing nodes or arcs, unless the \c GR template
2522 2525
  /// parameter is set to be \c const.
2523 2526
  ///
2524 2527
  /// \tparam GR The type of the adapted graph.
2525 2528
  /// It must conform to the \ref concepts::Graph "Graph" concept.
2526 2529
  /// It can also be specified to be \c const.
2527 2530
  /// \tparam DM The type of the direction map.
2528 2531
  /// It must be a \c bool (or convertible) edge map of the
2529 2532
  /// adapted graph. The default type is
2530 2533
  /// \ref concepts::Graph::EdgeMap "GR::EdgeMap<bool>".
2531 2534
  ///
2532 2535
  /// \note The \c Node type of this adaptor and the adapted graph are
2533 2536
  /// convertible to each other, moreover the \c Arc type of the adaptor
2534 2537
  /// and the \c Edge type of the adapted graph are also convertible to
2535 2538
  /// each other.
2536 2539
#ifdef DOXYGEN
2537 2540
  template<typename GR,
2538 2541
           typename DM>
2539 2542
  class Orienter {
2540 2543
#else
2541 2544
  template<typename GR,
2542 2545
           typename DM = typename GR::template EdgeMap<bool> >
2543 2546
  class Orienter :
2544 2547
    public DigraphAdaptorExtender<OrienterBase<GR, DM> > {
2545 2548
#endif
2546 2549
  public:
2547 2550

	
2548 2551
    /// The type of the adapted graph.
2549 2552
    typedef GR Graph;
2550 2553
    /// The type of the direction edge map.
2551 2554
    typedef DM DirectionMap;
2552 2555

	
2553 2556
    typedef DigraphAdaptorExtender<OrienterBase<GR, DM> > Parent;
2554 2557
    typedef typename Parent::Arc Arc;
2555 2558
  protected:
2556 2559
    Orienter() { }
2557 2560
  public:
2558 2561

	
2559 2562
    /// \brief Constructor
2560 2563
    ///
2561 2564
    /// Constructor of the adaptor.
2562 2565
    Orienter(GR& graph, DM& direction) {
2563 2566
      Parent::initialize(graph, direction);
2564 2567
    }
2565 2568

	
2566 2569
    /// \brief Reverses the given arc
2567 2570
    ///
2568 2571
    /// This function reverses the given arc.
2569 2572
    /// It is done by simply negate the assigned value of \c a
2570 2573
    /// in the direction map.
2571 2574
    void reverseArc(const Arc& a) {
2572 2575
      Parent::reverseArc(a);
2573 2576
    }
2574 2577
  };
2575 2578

	
2576 2579
  /// \brief Returns a read-only Orienter adaptor
2577 2580
  ///
2578 2581
  /// This function just returns a read-only \ref Orienter adaptor.
Ignore white space 768 line context
1 1
/* -*- mode: C++; indent-tabs-mode: nil; -*-
2 2
 *
3 3
 * This file is a part of LEMON, a generic C++ optimization library.
4 4
 *
5 5
 * Copyright (C) 2003-2009
6 6
 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
7 7
 * (Egervary Research Group on Combinatorial Optimization, EGRES).
8 8
 *
9 9
 * Permission to use, modify and distribute this software is granted
10 10
 * provided that this copyright notice appears in all copies. For
11 11
 * precise terms see the accompanying LICENSE file.
12 12
 *
13 13
 * This software is provided "AS IS" with no warranty of any kind,
14 14
 * express or implied, and with no claim as to its suitability for any
15 15
 * purpose.
16 16
 *
17 17
 */
18 18

	
19 19
///\ingroup graph_concepts
20 20
///\file
21 21
///\brief The concept of graph components.
22 22

	
23 23
#ifndef LEMON_CONCEPTS_GRAPH_COMPONENTS_H
24 24
#define LEMON_CONCEPTS_GRAPH_COMPONENTS_H
25 25

	
26 26
#include <lemon/core.h>
27 27
#include <lemon/concepts/maps.h>
28 28

	
29 29
#include <lemon/bits/alteration_notifier.h>
30 30

	
31 31
namespace lemon {
32 32
  namespace concepts {
33 33

	
34
    /// \brief Skeleton class for graph Node and Arc types
34
    /// \brief Concept class for \c Node, \c Arc and \c Edge types.
35 35
    ///
36
    /// This class describes the interface of Node and Arc (and Edge
37
    /// in undirected graphs) subtypes of graph types.
36
    /// This class describes the concept of \c Node, \c Arc and \c Edge
37
    /// subtypes of digraph and graph types.
38 38
    ///
39 39
    /// \note This class is a template class so that we can use it to
40
    /// create graph skeleton classes. The reason for this is than Node
41
    /// and Arc types should \em not derive from the same base class.
42
    /// For Node you should instantiate it with character 'n' and for Arc
43
    /// with 'a'.
44

	
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'.
45 44
#ifndef DOXYGEN
46 45
    template <char sel = '0'>
47 46
#endif
48 47
    class GraphItem {
49 48
    public:
50 49
      /// \brief Default constructor.
51 50
      ///
51
      /// Default constructor.
52 52
      /// \warning The default constructor is not required to set
53 53
      /// the item to some well-defined value. So you should consider it
54 54
      /// as uninitialized.
55 55
      GraphItem() {}
56

	
56 57
      /// \brief Copy constructor.
57 58
      ///
58 59
      /// Copy constructor.
60
      GraphItem(const GraphItem &) {}
61

	
62
      /// \brief Constructor for conversion from \c INVALID.
59 63
      ///
60
      GraphItem(const GraphItem &) {}
61
      /// \brief Invalid constructor \& conversion.
62
      ///
63
      /// This constructor initializes the item to be invalid.
64
      /// Constructor for conversion from \c INVALID.
65
      /// It initializes the item to be invalid.
64 66
      /// \sa Invalid for more details.
65 67
      GraphItem(Invalid) {}
66
      /// \brief Assign operator for nodes.
68

	
69
      /// \brief Assignment operator.
67 70
      ///
68
      /// The nodes are assignable.
69
      ///
70
      GraphItem& operator=(GraphItem const&) { return *this; }
71
      /// Assignment operator for the item.
72
      GraphItem& operator=(const GraphItem&) { return *this; }
73

	
71 74
      /// \brief Equality operator.
72 75
      ///
73
      /// Two iterators are equal if and only if they represents the
74
      /// same node in the graph or both are invalid.
75
      bool operator==(GraphItem) const { return false; }
76
      /// Equality operator.
77
      bool operator==(const GraphItem&) const { return false; }
78

	
76 79
      /// \brief Inequality operator.
77 80
      ///
78
      /// \sa operator==(const Node& n)
81
      /// Inequality operator.
82
      bool operator!=(const GraphItem&) const { return false; }
83

	
84
      /// \brief Ordering operator.
79 85
      ///
80
      bool operator!=(GraphItem) const { return false; }
81

	
82
      /// \brief Artificial ordering operator.
83
      ///
84
      /// To allow the use of graph descriptors as key type in std::map or
85
      /// similar associative container we require this.
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).
86 89
      ///
87 90
      /// \note This operator only have to define some strict ordering of
88 91
      /// the items; this order has nothing to do with the iteration
89 92
      /// ordering of the items.
90
      bool operator<(GraphItem) const { return false; }
93
      bool operator<(const GraphItem&) const { return false; }
91 94

	
92 95
      template<typename _GraphItem>
93 96
      struct Constraints {
94 97
        void constraints() {
95 98
          _GraphItem i1;
96 99
          _GraphItem i2 = i1;
97 100
          _GraphItem i3 = INVALID;
98 101

	
99 102
          i1 = i2 = i3;
100 103

	
101 104
          bool b;
102
          //          b = (ia == ib) && (ia != ib) && (ia < ib);
103 105
          b = (ia == ib) && (ia != ib);
104 106
          b = (ia == INVALID) && (ib != INVALID);
105 107
          b = (ia < ib);
106 108
        }
107 109

	
108 110
        const _GraphItem &ia;
109 111
        const _GraphItem &ib;
110 112
      };
111 113
    };
112 114

	
113
    /// \brief An empty base directed graph class.
115
    /// \brief Base skeleton class for directed graphs.
114 116
    ///
115
    /// This class provides the minimal set of features needed for a
116
    /// directed graph structure. All digraph concepts have to
117
    /// conform to this base directed graph. It just provides types
118
    /// for nodes and arcs and functions to get the source and the
119
    /// target of the arcs.
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.
120 121
    class BaseDigraphComponent {
121 122
    public:
122 123

	
123 124
      typedef BaseDigraphComponent Digraph;
124 125

	
125 126
      /// \brief Node class of the digraph.
126 127
      ///
127
      /// This class represents the Nodes of the digraph.
128
      ///
128
      /// This class represents the nodes of the digraph.
129 129
      typedef GraphItem<'n'> Node;
130 130

	
131 131
      /// \brief Arc class of the digraph.
132 132
      ///
133
      /// This class represents the Arcs of the digraph.
133
      /// This class represents the arcs of the digraph.
134
      typedef GraphItem<'a'> Arc;
135

	
136
      /// \brief Return the source node of an arc.
134 137
      ///
135
      typedef GraphItem<'e'> Arc;
138
      /// This function returns the source node of an arc.
139
      Node source(const Arc&) const { return INVALID; }
136 140

	
137
      /// \brief Gives back the target node of an arc.
141
      /// \brief Return the target node of an arc.
138 142
      ///
139
      /// Gives back the target node of an arc.
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.
140 147
      ///
141
      Node target(const Arc&) const { return INVALID;}
142

	
143
      /// \brief Gives back the source node of an arc.
144
      ///
145
      /// Gives back the source node of an arc.
146
      ///
147
      Node source(const Arc&) const { return INVALID;}
148

	
149
      /// \brief Gives back the opposite node on the given arc.
150
      ///
151
      /// Gives back the opposite node on the given arc.
148
      /// This function returns the opposite node on the given arc.
152 149
      Node oppositeNode(const Node&, const Arc&) const {
153 150
        return INVALID;
154 151
      }
155 152

	
156 153
      template <typename _Digraph>
157 154
      struct Constraints {
158 155
        typedef typename _Digraph::Node Node;
159 156
        typedef typename _Digraph::Arc Arc;
160 157

	
161 158
        void constraints() {
162 159
          checkConcept<GraphItem<'n'>, Node>();
163 160
          checkConcept<GraphItem<'a'>, Arc>();
164 161
          {
165 162
            Node n;
166 163
            Arc e(INVALID);
167 164
            n = digraph.source(e);
168 165
            n = digraph.target(e);
169 166
            n = digraph.oppositeNode(n, e);
170 167
          }
171 168
        }
172 169

	
173 170
        const _Digraph& digraph;
174 171
      };
175 172
    };
176 173

	
177
    /// \brief An empty base undirected graph class.
174
    /// \brief Base skeleton class for undirected graphs.
178 175
    ///
179
    /// This class provides the minimal set of features needed for an
180
    /// undirected graph structure. All undirected graph concepts have
181
    /// to conform to this base graph. It just provides types for
182
    /// nodes, arcs and edges and functions to get the
183
    /// source and the target of the arcs and edges,
184
    /// conversion from arcs to edges and function to get
185
    /// both direction of the edges.
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.
186 181
    class BaseGraphComponent : public BaseDigraphComponent {
187 182
    public:
188 183
      typedef BaseDigraphComponent::Node Node;
189 184
      typedef BaseDigraphComponent::Arc Arc;
190
      /// \brief Undirected arc class of the graph.
185

	
186
      /// \brief Undirected edge class of the graph.
191 187
      ///
192
      /// This class represents the edges of the graph.
193
      /// The undirected graphs can be used as a directed graph which
194
      /// for each arc contains the opposite arc too so the graph is
195
      /// bidirected. The edge represents two opposite
196
      /// directed arcs.
197
      class Edge : public GraphItem<'u'> {
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'> {
198 192
      public:
199
        typedef GraphItem<'u'> Parent;
193
        typedef GraphItem<'e'> Parent;
194

	
200 195
        /// \brief Default constructor.
201 196
        ///
197
        /// Default constructor.
202 198
        /// \warning The default constructor is not required to set
203 199
        /// the item to some well-defined value. So you should consider it
204 200
        /// as uninitialized.
205 201
        Edge() {}
202

	
206 203
        /// \brief Copy constructor.
207 204
        ///
208 205
        /// Copy constructor.
206
        Edge(const Edge &) : Parent() {}
207

	
208
        /// \brief Constructor for conversion from \c INVALID.
209 209
        ///
210
        Edge(const Edge &) : Parent() {}
211
        /// \brief Invalid constructor \& conversion.
212
        ///
213
        /// This constructor initializes the item to be invalid.
210
        /// Constructor for conversion from \c INVALID.
211
        /// It initializes the item to be invalid.
214 212
        /// \sa Invalid for more details.
215 213
        Edge(Invalid) {}
216
        /// \brief Converter from arc to edge.
214

	
215
        /// \brief Constructor for conversion from an arc.
217 216
        ///
217
        /// Constructor for conversion from an arc.
218 218
        /// Besides the core graph item functionality each arc should
219 219
        /// be convertible to the represented edge.
220 220
        Edge(const Arc&) {}
221
        /// \brief Assign arc to edge.
221

	
222
        /// \brief Assign an arc to an edge.
222 223
        ///
224
        /// This function assigns an arc to an edge.
223 225
        /// Besides the core graph item functionality each arc should
224 226
        /// be convertible to the represented edge.
225 227
        Edge& operator=(const Arc&) { return *this; }
226 228
      };
227 229

	
228
      /// \brief Returns the direction of the arc.
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.
229 253
      ///
230 254
      /// Returns the direction of the arc. Each arc represents an
231 255
      /// edge with a direction. It gives back the
232 256
      /// direction.
233 257
      bool direction(const Arc&) const { return true; }
234 258

	
235
      /// \brief Returns the directed arc.
259
      /// \brief Return the opposite arc.
236 260
      ///
237
      /// Returns the directed arc from its direction and the
238
      /// represented edge.
239
      Arc direct(const Edge&, bool) const { return INVALID;}
240

	
241
      /// \brief Returns the directed arc.
242
      ///
243
      /// Returns the directed arc from its source and the
244
      /// represented edge.
245
      Arc direct(const Edge&, const Node&) const { return INVALID;}
246

	
247
      /// \brief Returns the opposite arc.
248
      ///
249
      /// Returns the opposite arc. It is the arc representing the
250
      /// same edge and has opposite direction.
251
      Arc oppositeArc(const Arc&) const { return INVALID;}
252

	
253
      /// \brief Gives back one ending of an edge.
254
      ///
255
      /// Gives back one ending of an edge.
256
      Node u(const Edge&) const { return INVALID;}
257

	
258
      /// \brief Gives back the other ending of an edge.
259
      ///
260
      /// Gives back the other ending of an edge.
261
      Node v(const Edge&) const { return INVALID;}
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; }
262 264

	
263 265
      template <typename _Graph>
264 266
      struct Constraints {
265 267
        typedef typename _Graph::Node Node;
266 268
        typedef typename _Graph::Arc Arc;
267 269
        typedef typename _Graph::Edge Edge;
268 270

	
269 271
        void constraints() {
270 272
          checkConcept<BaseDigraphComponent, _Graph>();
271
          checkConcept<GraphItem<'u'>, Edge>();
273
          checkConcept<GraphItem<'e'>, Edge>();
272 274
          {
273 275
            Node n;
274 276
            Edge ue(INVALID);
275 277
            Arc e;
276 278
            n = graph.u(ue);
277 279
            n = graph.v(ue);
278 280
            e = graph.direct(ue, true);
281
            e = graph.direct(ue, false);
279 282
            e = graph.direct(ue, n);
280 283
            e = graph.oppositeArc(e);
281 284
            ue = e;
282 285
            bool d = graph.direction(e);
283 286
            ignore_unused_variable_warning(d);
284 287
          }
285 288
        }
286 289

	
287 290
        const _Graph& graph;
288 291
      };
289 292

	
290 293
    };
291 294

	
292
    /// \brief An empty idable base digraph class.
295
    /// \brief Skeleton class for \e idable directed graphs.
293 296
    ///
294
    /// This class provides beside the core digraph features
295
    /// core id functions for the digraph structure.
296
    /// The most of the base digraphs should conform to this concept.
297
    /// The id's are unique and immutable.
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.
298 301
    template <typename BAS = BaseDigraphComponent>
299 302
    class IDableDigraphComponent : public BAS {
300 303
    public:
301 304

	
302 305
      typedef BAS Base;
303 306
      typedef typename Base::Node Node;
304 307
      typedef typename Base::Arc Arc;
305 308

	
306
      /// \brief Gives back an unique integer id for the Node.
309
      /// \brief Return a unique integer id for the given node.
307 310
      ///
308
      /// Gives back an unique integer id for the Node.
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.
309 315
      ///
310
      int id(const Node&) const { return -1;}
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; }
311 320

	
312
      /// \brief Gives back the node by the unique id.
321
      /// \brief Return a unique integer id for the given arc.
313 322
      ///
314
      /// Gives back the node by the unique id.
315
      /// If the digraph does not contain node with the given id
316
      /// then the result of the function is undetermined.
317
      Node nodeFromId(int) const { return INVALID;}
323
      /// This function returns a unique integer id for the given arc.
324
      int id(const Arc&) const { return -1; }
318 325

	
319
      /// \brief Gives back an unique integer id for the Arc.
326
      /// \brief Return the arc by its unique id.
320 327
      ///
321
      /// Gives back an unique integer id for the Arc.
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.
322 335
      ///
323
      int id(const Arc&) const { return -1;}
336
      /// This function returns an integer greater or equal to the
337
      /// maximum node id.
338
      int maxNodeId() const { return -1; }
324 339

	
325
      /// \brief Gives back the arc by the unique id.
340
      /// \brief Return an integer greater or equal to the maximum
341
      /// arc id.
326 342
      ///
327
      /// Gives back the arc by the unique id.
328
      /// If the digraph does not contain arc with the given id
329
      /// then the result of the function is undetermined.
330
      Arc arcFromId(int) const { return INVALID;}
331

	
332
      /// \brief Gives back an integer greater or equal to the maximum
333
      /// Node id.
334
      ///
335
      /// Gives back an integer greater or equal to the maximum Node
336
      /// id.
337
      int maxNodeId() const { return -1;}
338

	
339
      /// \brief Gives back an integer greater or equal to the maximum
340
      /// Arc id.
341
      ///
342
      /// Gives back an integer greater or equal to the maximum Arc
343
      /// id.
344
      int maxArcId() const { return -1;}
343
      /// This function returns an integer greater or equal to the
344
      /// maximum arc id.
345
      int maxArcId() const { return -1; }
345 346

	
346 347
      template <typename _Digraph>
347 348
      struct Constraints {
348 349

	
349 350
        void constraints() {
350 351
          checkConcept<Base, _Digraph >();
351 352
          typename _Digraph::Node node;
352 353
          int nid = digraph.id(node);
353 354
          nid = digraph.id(node);
354 355
          node = digraph.nodeFromId(nid);
355 356
          typename _Digraph::Arc arc;
356 357
          int eid = digraph.id(arc);
357 358
          eid = digraph.id(arc);
358 359
          arc = digraph.arcFromId(eid);
359 360

	
360 361
          nid = digraph.maxNodeId();
361 362
          ignore_unused_variable_warning(nid);
362 363
          eid = digraph.maxArcId();
363 364
          ignore_unused_variable_warning(eid);
364 365
        }
365 366

	
366 367
        const _Digraph& digraph;
367 368
      };
368 369
    };
369 370

	
370
    /// \brief An empty idable base undirected graph class.
371
    /// \brief Skeleton class for \e idable undirected graphs.
371 372
    ///
372
    /// This class provides beside the core undirected graph features
373
    /// core id functions for the undirected graph structure.  The
374
    /// most of the base undirected graphs should conform to this
375
    /// concept.  The id's are unique and immutable.
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.
376 378
    template <typename BAS = BaseGraphComponent>
377 379
    class IDableGraphComponent : public IDableDigraphComponent<BAS> {
378 380
    public:
379 381

	
380 382
      typedef BAS Base;
381 383
      typedef typename Base::Edge Edge;
382 384

	
383 385
      using IDableDigraphComponent<Base>::id;
384 386

	
385
      /// \brief Gives back an unique integer id for the Edge.
387
      /// \brief Return a unique integer id for the given edge.
386 388
      ///
387
      /// Gives back an unique integer id for the Edge.
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.
388 393
      ///
389
      int id(const Edge&) const { return -1;}
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; }
390 398

	
391
      /// \brief Gives back the edge by the unique id.
399
      /// \brief Return an integer greater or equal to the maximum
400
      /// edge id.
392 401
      ///
393
      /// Gives back the edge by the unique id.  If the
394
      /// graph does not contain arc with the given id then the
395
      /// result of the function is undetermined.
396
      Edge edgeFromId(int) const { return INVALID;}
397

	
398
      /// \brief Gives back an integer greater or equal to the maximum
399
      /// Edge id.
400
      ///
401
      /// Gives back an integer greater or equal to the maximum Edge
402
      /// id.
403
      int maxEdgeId() const { return -1;}
402
      /// This function returns an integer greater or equal to the
403
      /// maximum edge id.
404
      int maxEdgeId() const { return -1; }
404 405

	
405 406
      template <typename _Graph>
406 407
      struct Constraints {
407 408

	
408 409
        void constraints() {
409
          checkConcept<Base, _Graph >();
410 410
          checkConcept<IDableDigraphComponent<Base>, _Graph >();
411 411
          typename _Graph::Edge edge;
412 412
          int ueid = graph.id(edge);
413 413
          ueid = graph.id(edge);
414 414
          edge = graph.edgeFromId(ueid);
415 415
          ueid = graph.maxEdgeId();
416 416
          ignore_unused_variable_warning(ueid);
417 417
        }
418 418

	
419 419
        const _Graph& graph;
420 420
      };
421 421
    };
422 422

	
423
    /// \brief Skeleton class for graph NodeIt and ArcIt
423
    /// \brief Concept class for \c NodeIt, \c ArcIt and \c EdgeIt types.
424 424
    ///
425
    /// Skeleton class for graph NodeIt and ArcIt.
426
    ///
425
    /// This class describes the concept of \c NodeIt, \c ArcIt and 
426
    /// \c EdgeIt subtypes of digraph and graph types.
427 427
    template <typename GR, typename Item>
428 428
    class GraphItemIt : public Item {
429 429
    public:
430 430
      /// \brief Default constructor.
431 431
      ///
432
      /// @warning The default constructor sets the iterator
433
      /// to an undefined value.
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.
434 436
      GraphItemIt() {}
437

	
435 438
      /// \brief Copy constructor.
436 439
      ///
437 440
      /// Copy constructor.
441
      GraphItemIt(const GraphItemIt& it) : Item(it) {}
442

	
443
      /// \brief Constructor that sets the iterator to the first item.
438 444
      ///
439
      GraphItemIt(const GraphItemIt& ) {}
440
      /// \brief Sets the iterator to the first item.
445
      /// Constructor that sets the iterator to the first item.
446
      explicit GraphItemIt(const GR&) {}
447

	
448
      /// \brief Constructor for conversion from \c INVALID.
441 449
      ///
442
      /// Sets the iterator to the first item of \c the graph.
443
      ///
444
      explicit GraphItemIt(const GR&) {}
445
      /// \brief Invalid constructor \& conversion.
446
      ///
447
      /// This constructor initializes the item to be invalid.
450
      /// Constructor for conversion from \c INVALID.
451
      /// It initializes the iterator to be invalid.
448 452
      /// \sa Invalid for more details.
449 453
      GraphItemIt(Invalid) {}
450
      /// \brief Assign operator for items.
454

	
455
      /// \brief Assignment operator.
451 456
      ///
452
      /// The items are assignable.
457
      /// Assignment operator for the iterator.
458
      GraphItemIt& operator=(const GraphItemIt&) { return *this; }
459

	
460
      /// \brief Increment the iterator.
453 461
      ///
454
      GraphItemIt& operator=(const GraphItemIt&) { return *this; }
455
      /// \brief Next item.
456
      ///
457
      /// Assign the iterator to the next item.
458
      ///
462
      /// This operator increments the iterator, i.e. assigns it to the
463
      /// next item.
459 464
      GraphItemIt& operator++() { return *this; }
465
 
460 466
      /// \brief Equality operator
461 467
      ///
468
      /// Equality operator.
462 469
      /// Two iterators are equal if and only if they point to the
463 470
      /// same object or both are invalid.
464 471
      bool operator==(const GraphItemIt&) const { return true;}
472

	
465 473
      /// \brief Inequality operator
466 474
      ///
467
      /// \sa operator==(Node n)
468
      ///
475
      /// Inequality operator.
476
      /// Two iterators are equal if and only if they point to the
477
      /// same object or both are invalid.
469 478
      bool operator!=(const GraphItemIt&) const { return true;}
470 479

	
471 480
      template<typename _GraphItemIt>
472 481
      struct Constraints {
473 482
        void constraints() {
483
          checkConcept<GraphItem<>, _GraphItemIt>();
474 484
          _GraphItemIt it1(g);
475 485
          _GraphItemIt it2;
486
          _GraphItemIt it3 = it1;
487
          _GraphItemIt it4 = INVALID;
476 488

	
477 489
          it2 = ++it1;
478 490
          ++it2 = it1;
479 491
          ++(++it1);
480 492

	
481 493
          Item bi = it1;
482 494
          bi = it2;
483 495
        }
484
        GR& g;
496
        const GR& g;
485 497
      };
486 498
    };
487 499

	
488
    /// \brief Skeleton class for graph InArcIt and OutArcIt
500
    /// \brief Concept class for \c InArcIt, \c OutArcIt and 
501
    /// \c IncEdgeIt types.
489 502
    ///
490
    /// \note Because InArcIt and OutArcIt may not inherit from the same
491
    /// base class, the \c sel is a additional template parameter (selector).
492
    /// For InArcIt you should instantiate it with character 'i' and for
493
    /// OutArcIt with 'o'.
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'.
494 510
    template <typename GR,
495 511
              typename Item = typename GR::Arc,
496 512
              typename Base = typename GR::Node,
497 513
              char sel = '0'>
498 514
    class GraphIncIt : public Item {
499 515
    public:
500 516
      /// \brief Default constructor.
501 517
      ///
502
      /// @warning The default constructor sets the iterator
503
      /// to an undefined value.
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.
504 522
      GraphIncIt() {}
523

	
505 524
      /// \brief Copy constructor.
506 525
      ///
507 526
      /// Copy constructor.
527
      GraphIncIt(const GraphIncIt& it) : Item(it) {}
528

	
529
      /// \brief Constructor that sets the iterator to the first 
530
      /// incoming or outgoing arc.
508 531
      ///
509
      GraphIncIt(GraphIncIt const& gi) : Item(gi) {}
510
      /// \brief Sets the iterator to the first arc incoming into or outgoing
511
      /// from the node.
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.
512 537
      ///
513
      /// Sets the iterator to the first arc incoming into or outgoing
514
      /// from the node.
515
      ///
516
      explicit GraphIncIt(const GR&, const Base&) {}
517
      /// \brief Invalid constructor \& conversion.
518
      ///
519
      /// This constructor initializes the item to be invalid.
538
      /// Constructor for conversion from \c INVALID.
539
      /// It initializes the iterator to be invalid.
520 540
      /// \sa Invalid for more details.
521 541
      GraphIncIt(Invalid) {}
522
      /// \brief Assign operator for iterators.
542

	
543
      /// \brief Assignment operator.
523 544
      ///
524
      /// The iterators are assignable.
545
      /// Assignment operator for the iterator.
546
      GraphIncIt& operator=(const GraphIncIt&) { return *this; }
547

	
548
      /// \brief Increment the iterator.
525 549
      ///
526
      GraphIncIt& operator=(GraphIncIt const&) { return *this; }
527
      /// \brief Next item.
528
      ///
529
      /// Assign the iterator to the next item.
530
      ///
550
      /// This operator increments the iterator, i.e. assigns it to the
551
      /// next arc incoming to or outgoing from the given node.
531 552
      GraphIncIt& operator++() { return *this; }
532 553

	
533 554
      /// \brief Equality operator
534 555
      ///
556
      /// Equality operator.
535 557
      /// Two iterators are equal if and only if they point to the
536 558
      /// same object or both are invalid.
537 559
      bool operator==(const GraphIncIt&) const { return true;}
538 560

	
539 561
      /// \brief Inequality operator
540 562
      ///
541
      /// \sa operator==(Node n)
542
      ///
563
      /// Inequality operator.
564
      /// Two iterators are equal if and only if they point to the
565
      /// same object or both are invalid.
543 566
      bool operator!=(const GraphIncIt&) const { return true;}
544 567

	
545 568
      template <typename _GraphIncIt>
546 569
      struct Constraints {
547 570
        void constraints() {
548 571
          checkConcept<GraphItem<sel>, _GraphIncIt>();
549 572
          _GraphIncIt it1(graph, node);
550 573
          _GraphIncIt it2;
574
          _GraphIncIt it3 = it1;
575
          _GraphIncIt it4 = INVALID;
551 576

	
552 577
          it2 = ++it1;
553 578
          ++it2 = it1;
554 579
          ++(++it1);
555 580
          Item e = it1;
556 581
          e = it2;
557

	
558 582
        }
559

	
560
        Item arc;
561
        Base node;
562
        GR graph;
563
        _GraphIncIt it;
583
        const Base& node;
584
        const GR& graph;
564 585
      };
565 586
    };
566 587

	
567

	
568
    /// \brief An empty iterable digraph class.
588
    /// \brief Skeleton class for iterable directed graphs.
569 589
    ///
570
    /// This class provides beside the core digraph features
571
    /// iterator based iterable interface for the digraph structure.
590
    /// This class describes the interface of iterable directed
591
    /// graphs. It extends \ref BaseDigraphComponent with the core
592
    /// iterable interface.
572 593
    /// This concept is part of the Digraph concept.
573 594
    template <typename BAS = BaseDigraphComponent>
574 595
    class IterableDigraphComponent : public BAS {
575 596

	
576 597
    public:
577 598

	
578 599
      typedef BAS Base;
579 600
      typedef typename Base::Node Node;
580 601
      typedef typename Base::Arc Arc;
581 602

	
582 603
      typedef IterableDigraphComponent Digraph;
583 604

	
584 605
      /// \name Base iteration
585 606
      ///
586
      /// This interface provides functions for iteration on digraph items
607
      /// This interface provides functions for iteration on digraph items.
587 608
      ///
588 609
      /// @{
589 610

	
590
      /// \brief Gives back the first node in the iterating order.
611
      /// \brief Return the first node.
591 612
      ///
592
      /// Gives back the first node in the iterating order.
593
      ///
613
      /// This function gives back the first node in the iteration order.
594 614
      void first(Node&) const {}
595 615

	
596
      /// \brief Gives back the next node in the iterating order.
616
      /// \brief Return the next node.
597 617
      ///
598
      /// Gives back the next node in the iterating order.
599
      ///
618
      /// This function gives back the next node in the iteration order.
600 619
      void next(Node&) const {}
601 620

	
602
      /// \brief Gives back the first arc in the iterating order.
621
      /// \brief Return the first arc.
603 622
      ///
604
      /// Gives back the first arc in the iterating order.
605
      ///
623
      /// This function gives back the first arc in the iteration order.
606 624
      void first(Arc&) const {}
607 625

	
608
      /// \brief Gives back the next arc in the iterating order.
626
      /// \brief Return the next arc.
609 627
      ///
610
      /// Gives back the next arc in the iterating order.
611
      ///
628
      /// This function gives back the next arc in the iteration order.
612 629
      void next(Arc&) const {}
613 630

	
614

	
615
      /// \brief Gives back the first of the arcs point to the given
616
      /// node.
631
      /// \brief Return the first arc incomming to the given node.
617 632
      ///
618
      /// Gives back the first of the arcs point to the given node.
619
      ///
633
      /// This function gives back the first arc incomming to the
634
      /// given node.
620 635
      void firstIn(Arc&, const Node&) const {}
621 636

	
622
      /// \brief Gives back the next of the arcs points to the given
623
      /// node.
637
      /// \brief Return the next arc incomming to the given node.
624 638
      ///
625
      /// Gives back the next of the arcs points to the given node.
626
      ///
639
      /// This function gives back the next arc incomming to the
640
      /// given node.
627 641
      void nextIn(Arc&) const {}
628 642

	
629
      /// \brief Gives back the first of the arcs start from the
643
      /// \brief Return the first arc outgoing form the given node.
644
      ///
645
      /// This function gives back the first arc outgoing form the
630 646
      /// given node.
631
      ///
632
      /// Gives back the first of the arcs start from the given node.
633
      ///
634 647
      void firstOut(Arc&, const Node&) const {}
635 648

	
636
      /// \brief Gives back the next of the arcs start from the given
637
      /// node.
649
      /// \brief Return the next arc outgoing form the given node.
638 650
      ///
639
      /// Gives back the next of the arcs start from the given node.
640
      ///
651
      /// This function gives back the next arc outgoing form the
652
      /// given node.
641 653
      void nextOut(Arc&) const {}
642 654

	
643 655
      /// @}
644 656

	
645 657
      /// \name Class based iteration
646 658
      ///
647
      /// This interface provides functions for iteration on digraph items
659
      /// This interface provides iterator classes for digraph items.
648 660
      ///
649 661
      /// @{
650 662

	
651 663
      /// \brief This iterator goes through each node.
652 664
      ///
653 665
      /// This iterator goes through each node.
654 666
      ///
655 667
      typedef GraphItemIt<Digraph, Node> NodeIt;
656 668

	
657
      /// \brief This iterator goes through each node.
669
      /// \brief This iterator goes through each arc.
658 670
      ///
659
      /// This iterator goes through each node.
671
      /// This iterator goes through each arc.
660 672
      ///
661 673
      typedef GraphItemIt<Digraph, Arc> ArcIt;
662 674

	
663 675
      /// \brief This iterator goes trough the incoming arcs of a node.
664 676
      ///
665
      /// This iterator goes trough the \e inccoming arcs of a certain node
677
      /// This iterator goes trough the \e incoming arcs of a certain node
666 678
      /// of a digraph.
667 679
      typedef GraphIncIt<Digraph, Arc, Node, 'i'> InArcIt;
668 680

	
669 681
      /// \brief This iterator goes trough the outgoing arcs of a node.
670 682
      ///
671 683
      /// This iterator goes trough the \e outgoing arcs of a certain node
672 684
      /// of a digraph.
673 685
      typedef GraphIncIt<Digraph, Arc, Node, 'o'> OutArcIt;
674 686

	
675 687
      /// \brief The base node of the iterator.
676 688
      ///
677
      /// Gives back the base node of the iterator.
678
      /// It is always the target of the pointed arc.
689
      /// This function gives back the base node of the iterator.
690
      /// It is always the target node of the pointed arc.
679 691
      Node baseNode(const InArcIt&) const { return INVALID; }
680 692

	
681 693
      /// \brief The running node of the iterator.
682 694
      ///
683
      /// Gives back the running node of the iterator.
684
      /// It is always the source of the pointed arc.
695
      /// This function gives back the running node of the iterator.
696
      /// It is always the source node of the pointed arc.
685 697
      Node runningNode(const InArcIt&) const { return INVALID; }
686 698

	
687 699
      /// \brief The base node of the iterator.
688 700
      ///
689
      /// Gives back the base node of the iterator.
690
      /// It is always the source of the pointed arc.
701
      /// This function gives back the base node of the iterator.
702
      /// It is always the source node of the pointed arc.
691 703
      Node baseNode(const OutArcIt&) const { return INVALID; }
692 704

	
693 705
      /// \brief The running node of the iterator.
694 706
      ///
695
      /// Gives back the running node of the iterator.
696
      /// It is always the target of the pointed arc.
707
      /// This function gives back the running node of the iterator.
708
      /// It is always the target node of the pointed arc.
697 709
      Node runningNode(const OutArcIt&) const { return INVALID; }
698 710

	
699 711
      /// @}
700 712

	
701 713
      template <typename _Digraph>
702 714
      struct Constraints {
703 715
        void constraints() {
704 716
          checkConcept<Base, _Digraph>();
705 717

	
706 718
          {
707 719
            typename _Digraph::Node node(INVALID);
708 720
            typename _Digraph::Arc arc(INVALID);
709 721
            {
710 722
              digraph.first(node);
711 723
              digraph.next(node);
712 724
            }
713 725
            {
714 726
              digraph.first(arc);
715 727
              digraph.next(arc);
716 728
            }
717 729
            {
718 730
              digraph.firstIn(arc, node);
719 731
              digraph.nextIn(arc);
720 732
            }
721 733
            {
722 734
              digraph.firstOut(arc, node);
723 735
              digraph.nextOut(arc);
724 736
            }
725 737
          }
726 738

	
727 739
          {
728 740
            checkConcept<GraphItemIt<_Digraph, typename _Digraph::Arc>,
729 741
              typename _Digraph::ArcIt >();
730 742
            checkConcept<GraphItemIt<_Digraph, typename _Digraph::Node>,
731 743
              typename _Digraph::NodeIt >();
732 744
            checkConcept<GraphIncIt<_Digraph, typename _Digraph::Arc,
733 745
              typename _Digraph::Node, 'i'>, typename _Digraph::InArcIt>();
734 746
            checkConcept<GraphIncIt<_Digraph, typename _Digraph::Arc,
735 747
              typename _Digraph::Node, 'o'>, typename _Digraph::OutArcIt>();
736 748

	
737 749
            typename _Digraph::Node n;
738
            typename _Digraph::InArcIt ieit(INVALID);
739
            typename _Digraph::OutArcIt oeit(INVALID);
740
            n = digraph.baseNode(ieit);
741
            n = digraph.runningNode(ieit);
742
            n = digraph.baseNode(oeit);
743
            n = digraph.runningNode(oeit);
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);
744 756
            ignore_unused_variable_warning(n);
745 757
          }
746 758
        }
747 759

	
748 760
        const _Digraph& digraph;
749

	
750 761
      };
751 762
    };
752 763

	
753
    /// \brief An empty iterable undirected graph class.
764
    /// \brief Skeleton class for iterable undirected graphs.
754 765
    ///
755
    /// This class provides beside the core graph features iterator
756
    /// based iterable interface for the undirected graph structure.
766
    /// This class describes the interface of iterable undirected
767
    /// graphs. It extends \ref IterableDigraphComponent with the core
768
    /// iterable interface of undirected graphs.
757 769
    /// This concept is part of the Graph concept.
758 770
    template <typename BAS = BaseGraphComponent>
759 771
    class IterableGraphComponent : public IterableDigraphComponent<BAS> {
760 772
    public:
761 773

	
762 774
      typedef BAS Base;
763 775
      typedef typename Base::Node Node;
764 776
      typedef typename Base::Arc Arc;
765 777
      typedef typename Base::Edge Edge;
766 778

	
767 779

	
768 780
      typedef IterableGraphComponent Graph;
769 781

	
770 782
      /// \name Base iteration
771 783
      ///
772
      /// This interface provides functions for iteration on graph items
784
      /// This interface provides functions for iteration on edges.
785
      ///
773 786
      /// @{
774 787

	
775 788
      using IterableDigraphComponent<Base>::first;
776 789
      using IterableDigraphComponent<Base>::next;
777 790

	
778
      /// \brief Gives back the first edge in the iterating
779
      /// order.
791
      /// \brief Return the first edge.
780 792
      ///
781
      /// Gives back the first edge in the iterating order.
782
      ///
793
      /// This function gives back the first edge in the iteration order.
783 794
      void first(Edge&) const {}
784 795

	
785
      /// \brief Gives back the next edge in the iterating
786
      /// order.
796
      /// \brief Return the next edge.
787 797
      ///
788
      /// Gives back the next edge in the iterating order.
789
      ///
798
      /// This function gives back the next edge in the iteration order.
790 799
      void next(Edge&) const {}
791 800

	
792

	
793
      /// \brief Gives back the first of the edges from the
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 
794 806
      /// given node.
795
      ///
796
      /// Gives back the first of the edges from the given
797
      /// node. The bool parameter gives back that direction which
798
      /// gives a good direction of the edge so the source of the
799
      /// directed arc is the given node.
800 807
      void firstInc(Edge&, bool&, const Node&) const {}
801 808

	
802 809
      /// \brief Gives back the next of the edges from the
803 810
      /// given node.
804 811
      ///
805
      /// Gives back the next of the edges from the given
806
      /// node. The bool parameter should be used as the \c firstInc()
807
      /// use it.
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.
808 814
      void nextInc(Edge&, bool&) const {}
809 815

	
810 816
      using IterableDigraphComponent<Base>::baseNode;
811 817
      using IterableDigraphComponent<Base>::runningNode;
812 818

	
813 819
      /// @}
814 820

	
815 821
      /// \name Class based iteration
816 822
      ///
817
      /// This interface provides functions for iteration on graph items
823
      /// This interface provides iterator classes for edges.
818 824
      ///
819 825
      /// @{
820 826

	
821
      /// \brief This iterator goes through each node.
827
      /// \brief This iterator goes through each edge.
822 828
      ///
823
      /// This iterator goes through each node.
829
      /// This iterator goes through each edge.
824 830
      typedef GraphItemIt<Graph, Edge> EdgeIt;
825
      /// \brief This iterator goes trough the incident arcs of a
831

	
832
      /// \brief This iterator goes trough the incident edges of a
826 833
      /// node.
827 834
      ///
828
      /// This iterator goes trough the incident arcs of a certain
835
      /// This iterator goes trough the incident edges of a certain
829 836
      /// node of a graph.
830
      typedef GraphIncIt<Graph, Edge, Node, 'u'> IncEdgeIt;
837
      typedef GraphIncIt<Graph, Edge, Node, 'e'> IncEdgeIt;
838

	
831 839
      /// \brief The base node of the iterator.
832 840
      ///
833
      /// Gives back the base node of the iterator.
841
      /// This function gives back the base node of the iterator.
834 842
      Node baseNode(const IncEdgeIt&) const { return INVALID; }
835 843

	
836 844
      /// \brief The running node of the iterator.
837 845
      ///
838
      /// Gives back the running node of the iterator.
846
      /// This function gives back the running node of the iterator.
839 847
      Node runningNode(const IncEdgeIt&) const { return INVALID; }
840 848

	
841 849
      /// @}
842 850

	
843 851
      template <typename _Graph>
844 852
      struct Constraints {
845 853
        void constraints() {
846 854
          checkConcept<IterableDigraphComponent<Base>, _Graph>();
847 855

	
848 856
          {
849 857
            typename _Graph::Node node(INVALID);
850 858
            typename _Graph::Edge edge(INVALID);
851 859
            bool dir;
852 860
            {
853 861
              graph.first(edge);
854 862
              graph.next(edge);
855 863
            }
856 864
            {
857 865
              graph.firstInc(edge, dir, node);
858 866
              graph.nextInc(edge, dir);
859 867
            }
860 868

	
861 869
          }
862 870

	
863 871
          {
864 872
            checkConcept<GraphItemIt<_Graph, typename _Graph::Edge>,
865 873
              typename _Graph::EdgeIt >();
866 874
            checkConcept<GraphIncIt<_Graph, typename _Graph::Edge,
867
              typename _Graph::Node, 'u'>, typename _Graph::IncEdgeIt>();
875
              typename _Graph::Node, 'e'>, typename _Graph::IncEdgeIt>();
868 876

	
869 877
            typename _Graph::Node n;
870
            typename _Graph::IncEdgeIt ueit(INVALID);
871
            n = graph.baseNode(ueit);
872
            n = graph.runningNode(ueit);
878
            const typename _Graph::IncEdgeIt ieit(INVALID);
879
            n = graph.baseNode(ieit);
880
            n = graph.runningNode(ieit);
873 881
          }
874 882
        }
875 883

	
876 884
        const _Graph& graph;
877 885
      };
878 886
    };
879 887

	
880
    /// \brief An empty alteration notifier digraph class.
888
    /// \brief Skeleton class for alterable directed graphs.
881 889
    ///
882
    /// This class provides beside the core digraph features alteration
883
    /// notifier interface for the digraph structure.  This implements
890
    /// This class describes the interface of alterable directed
891
    /// graphs. It extends \ref BaseDigraphComponent with the alteration
892
    /// notifier interface. It implements
884 893
    /// an observer-notifier pattern for each digraph item. More
885 894
    /// obsevers can be registered into the notifier and whenever an
886
    /// alteration occured in the digraph all the observers will
895
    /// alteration occured in the digraph all the observers will be
887 896
    /// notified about it.
888 897
    template <typename BAS = BaseDigraphComponent>
889 898
    class AlterableDigraphComponent : public BAS {
890 899
    public:
891 900

	
892 901
      typedef BAS Base;
893 902
      typedef typename Base::Node Node;
894 903
      typedef typename Base::Arc Arc;
895 904

	
896 905

	
897
      /// The node observer registry.
906
      /// Node alteration notifier class.
898 907
      typedef AlterationNotifier<AlterableDigraphComponent, Node>
899 908
      NodeNotifier;
900
      /// The arc observer registry.
909
      /// Arc alteration notifier class.
901 910
      typedef AlterationNotifier<AlterableDigraphComponent, Arc>
902 911
      ArcNotifier;
903 912

	
904
      /// \brief Gives back the node alteration notifier.
913
      /// \brief Return the node alteration notifier.
905 914
      ///
906
      /// Gives back the node alteration notifier.
915
      /// This function gives back the node alteration notifier.
907 916
      NodeNotifier& notifier(Node) const {
908
        return NodeNotifier();
917
         return NodeNotifier();
909 918
      }
910 919

	
911
      /// \brief Gives back the arc alteration notifier.
920
      /// \brief Return the arc alteration notifier.
912 921
      ///
913
      /// Gives back the arc alteration notifier.
922
      /// This function gives back the arc alteration notifier.
914 923
      ArcNotifier& notifier(Arc) const {
915 924
        return ArcNotifier();
916 925
      }
917 926

	
918 927
      template <typename _Digraph>
919 928
      struct Constraints {
920 929
        void constraints() {
921 930
          checkConcept<Base, _Digraph>();
922 931
          typename _Digraph::NodeNotifier& nn
923 932
            = digraph.notifier(typename _Digraph::Node());
924 933

	
925 934
          typename _Digraph::ArcNotifier& en
926 935
            = digraph.notifier(typename _Digraph::Arc());
927 936

	
928 937
          ignore_unused_variable_warning(nn);
929 938
          ignore_unused_variable_warning(en);
930 939
        }
931 940

	
932 941
        const _Digraph& digraph;
933

	
934 942
      };
935

	
936 943
    };
937 944

	
938
    /// \brief An empty alteration notifier undirected graph class.
945
    /// \brief Skeleton class for alterable undirected graphs.
939 946
    ///
940
    /// This class provides beside the core graph features alteration
941
    /// notifier interface for the graph structure.  This implements
942
    /// an observer-notifier pattern for each graph item. More
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
943 951
    /// obsevers can be registered into the notifier and whenever an
944
    /// alteration occured in the graph all the observers will
952
    /// alteration occured in the graph all the observers will be
945 953
    /// notified about it.
946 954
    template <typename BAS = BaseGraphComponent>
947 955
    class AlterableGraphComponent : public AlterableDigraphComponent<BAS> {
948 956
    public:
949 957

	
950 958
      typedef BAS Base;
951 959
      typedef typename Base::Edge Edge;
952 960

	
953 961

	
954
      /// The arc observer registry.
962
      /// Edge alteration notifier class.
955 963
      typedef AlterationNotifier<AlterableGraphComponent, Edge>
956 964
      EdgeNotifier;
957 965

	
958
      /// \brief Gives back the arc alteration notifier.
966
      /// \brief Return the edge alteration notifier.
959 967
      ///
960
      /// Gives back the arc alteration notifier.
968
      /// This function gives back the edge alteration notifier.
961 969
      EdgeNotifier& notifier(Edge) const {
962 970
        return EdgeNotifier();
963 971
      }
964 972

	
965 973
      template <typename _Graph>
966 974
      struct Constraints {
967 975
        void constraints() {
968
          checkConcept<AlterableGraphComponent<Base>, _Graph>();
976
          checkConcept<AlterableDigraphComponent<Base>, _Graph>();
969 977
          typename _Graph::EdgeNotifier& uen
970 978
            = graph.notifier(typename _Graph::Edge());
971 979
          ignore_unused_variable_warning(uen);
972 980
        }
973 981

	
974 982
        const _Graph& graph;
975 983
      };
976 984
    };
977 985

	
978
    /// \brief Class describing the concept of graph maps
986
    /// \brief Concept class for standard graph maps.
979 987
    ///
980
    /// This class describes the common interface of the graph maps
981
    /// (NodeMap, ArcMap), that is maps that can be used to
982
    /// associate data to graph descriptors (nodes or arcs).
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.
983 991
    template <typename GR, typename K, typename V>
984 992
    class GraphMap : public ReadWriteMap<K, V> {
985 993
    public:
986 994

	
987 995
      typedef ReadWriteMap<K, V> Parent;
988 996

	
989 997
      /// The graph type of the map.
990 998
      typedef GR Graph;
991 999
      /// The key type of the map.
992 1000
      typedef K Key;
993 1001
      /// The value type of the map.
994 1002
      typedef V Value;
995 1003

	
996 1004
      /// \brief Construct a new map.
997 1005
      ///
998 1006
      /// Construct a new map for the graph.
999 1007
      explicit GraphMap(const Graph&) {}
1000 1008
      /// \brief Construct a new map with default value.
1001 1009
      ///
1002
      /// Construct a new map for the graph and initalise the values.
1010
      /// Construct a new map for the graph and initalize the values.
1003 1011
      GraphMap(const Graph&, const Value&) {}
1004 1012

	
1005 1013
    private:
1006 1014
      /// \brief Copy constructor.
1007 1015
      ///
1008 1016
      /// Copy Constructor.
1009 1017
      GraphMap(const GraphMap&) : Parent() {}
1010 1018

	
1011
      /// \brief Assign operator.
1019
      /// \brief Assignment operator.
1012 1020
      ///
1013
      /// Assign operator. It does not mofify the underlying graph,
1021
      /// Assignment operator. It does not mofify the underlying graph,
1014 1022
      /// it just iterates on the current item set and set the  map
1015 1023
      /// with the value returned by the assigned map.
1016 1024
      template <typename CMap>
1017 1025
      GraphMap& operator=(const CMap&) {
1018 1026
        checkConcept<ReadMap<Key, Value>, CMap>();
1019 1027
        return *this;
1020 1028
      }
1021 1029

	
1022 1030
    public:
1023 1031
      template<typename _Map>
1024 1032
      struct Constraints {
1025 1033
        void constraints() {
1026 1034
          checkConcept<ReadWriteMap<Key, Value>, _Map >();
1027
          // Construction with a graph parameter
1028
          _Map a(g);
1029
          // Constructor with a graph and a default value parameter
1030
          _Map a2(g,t);
1031
          // Copy constructor.
1032
          // _Map b(c);
1035
          _Map m1(g);
1036
          _Map m2(g,t);
1037
          
1038
          // Copy constructor
1039
          // _Map m3(m);
1033 1040

	
1041
          // Assignment operator
1034 1042
          // ReadMap<Key, Value> cmap;
1035
          // b = cmap;
1043
          // m3 = cmap;
1036 1044

	
1037
          ignore_unused_variable_warning(a);
1038
          ignore_unused_variable_warning(a2);
1039
          // ignore_unused_variable_warning(b);
1045
          ignore_unused_variable_warning(m1);
1046
          ignore_unused_variable_warning(m2);
1047
          // ignore_unused_variable_warning(m3);
1040 1048
        }
1041 1049

	
1042
        const _Map &c;
1050
        const _Map &m;
1043 1051
        const Graph &g;
1044 1052
        const typename GraphMap::Value &t;
1045 1053
      };
1046 1054

	
1047 1055
    };
1048 1056

	
1049
    /// \brief An empty mappable digraph class.
1057
    /// \brief Skeleton class for mappable directed graphs.
1050 1058
    ///
1051
    /// This class provides beside the core digraph features
1052
    /// map interface for the digraph structure.
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.
1053 1062
    /// This concept is part of the Digraph concept.
1054 1063
    template <typename BAS = BaseDigraphComponent>
1055 1064
    class MappableDigraphComponent : public BAS  {
1056 1065
    public:
1057 1066

	
1058 1067
      typedef BAS Base;
1059 1068
      typedef typename Base::Node Node;
1060 1069
      typedef typename Base::Arc Arc;
1061 1070

	
1062 1071
      typedef MappableDigraphComponent Digraph;
1063 1072

	
1064
      /// \brief ReadWrite map of the nodes.
1073
      /// \brief Standard graph map for the nodes.
1065 1074
      ///
1066
      /// ReadWrite map of the nodes.
1067
      ///
1075
      /// Standard graph map for the nodes.
1068 1076
      template <typename V>
1069
      class NodeMap : public GraphMap<Digraph, Node, V> {
1077
      class NodeMap : public GraphMap<MappableDigraphComponent, Node, V> {
1070 1078
      public:
1071 1079
        typedef GraphMap<MappableDigraphComponent, Node, V> Parent;
1072 1080

	
1073 1081
        /// \brief Construct a new map.
1074 1082
        ///
1075 1083
        /// Construct a new map for the digraph.
1076 1084
        explicit NodeMap(const MappableDigraphComponent& digraph)
1077 1085
          : Parent(digraph) {}
1078 1086

	
1079 1087
        /// \brief Construct a new map with default value.
1080 1088
        ///
1081
        /// Construct a new map for the digraph and initalise the values.
1089
        /// Construct a new map for the digraph and initalize the values.
1082 1090
        NodeMap(const MappableDigraphComponent& digraph, const V& value)
1083 1091
          : Parent(digraph, value) {}
1084 1092

	
1085 1093
      private:
1086 1094
        /// \brief Copy constructor.
1087 1095
        ///
1088 1096
        /// Copy Constructor.
1089 1097
        NodeMap(const NodeMap& nm) : Parent(nm) {}
1090 1098

	
1091
        /// \brief Assign operator.
1099
        /// \brief Assignment operator.
1092 1100
        ///
1093
        /// Assign operator.
1101
        /// Assignment operator.
1094 1102
        template <typename CMap>
1095 1103
        NodeMap& operator=(const CMap&) {
1096 1104
          checkConcept<ReadMap<Node, V>, CMap>();
1097 1105
          return *this;
1098 1106
        }
1099 1107

	
1100 1108
      };
1101 1109

	
1102
      /// \brief ReadWrite map of the arcs.
1110
      /// \brief Standard graph map for the arcs.
1103 1111
      ///
1104
      /// ReadWrite map of the arcs.
1105
      ///
1112
      /// Standard graph map for the arcs.
1106 1113
      template <typename V>
1107
      class ArcMap : public GraphMap<Digraph, Arc, V> {
1114
      class ArcMap : public GraphMap<MappableDigraphComponent, Arc, V> {
1108 1115
      public:
1109 1116
        typedef GraphMap<MappableDigraphComponent, Arc, V> Parent;
1110 1117

	
1111 1118
        /// \brief Construct a new map.
1112 1119
        ///
1113 1120
        /// Construct a new map for the digraph.
1114 1121
        explicit ArcMap(const MappableDigraphComponent& digraph)
1115 1122
          : Parent(digraph) {}
1116 1123

	
1117 1124
        /// \brief Construct a new map with default value.
1118 1125
        ///
1119
        /// Construct a new map for the digraph and initalise the values.
1126
        /// Construct a new map for the digraph and initalize the values.
1120 1127
        ArcMap(const MappableDigraphComponent& digraph, const V& value)
1121 1128
          : Parent(digraph, value) {}
1122 1129

	
1123 1130
      private:
1124 1131
        /// \brief Copy constructor.
1125 1132
        ///
1126 1133
        /// Copy Constructor.
1127 1134
        ArcMap(const ArcMap& nm) : Parent(nm) {}
1128 1135

	
1129
        /// \brief Assign operator.
1136
        /// \brief Assignment operator.
1130 1137
        ///
1131
        /// Assign operator.
1138
        /// Assignment operator.
1132 1139
        template <typename CMap>
1133 1140
        ArcMap& operator=(const CMap&) {
1134 1141
          checkConcept<ReadMap<Arc, V>, CMap>();
1135 1142
          return *this;
1136 1143
        }
1137 1144

	
1138 1145
      };
1139 1146

	
1140 1147

	
1141 1148
      template <typename _Digraph>
1142 1149
      struct Constraints {
1143 1150

	
1144 1151
        struct Dummy {
1145 1152
          int value;
1146 1153
          Dummy() : value(0) {}
1147 1154
          Dummy(int _v) : value(_v) {}
1148 1155
        };
1149 1156

	
1150 1157
        void constraints() {
1151 1158
          checkConcept<Base, _Digraph>();
1152 1159
          { // int map test
1153 1160
            typedef typename _Digraph::template NodeMap<int> IntNodeMap;
1154 1161
            checkConcept<GraphMap<_Digraph, typename _Digraph::Node, int>,
1155 1162
              IntNodeMap >();
1156 1163
          } { // bool map test
1157 1164
            typedef typename _Digraph::template NodeMap<bool> BoolNodeMap;
1158 1165
            checkConcept<GraphMap<_Digraph, typename _Digraph::Node, bool>,
1159 1166
              BoolNodeMap >();
1160 1167
          } { // Dummy map test
1161 1168
            typedef typename _Digraph::template NodeMap<Dummy> DummyNodeMap;
1162 1169
            checkConcept<GraphMap<_Digraph, typename _Digraph::Node, Dummy>,
1163 1170
              DummyNodeMap >();
1164 1171
          }
1165 1172

	
1166 1173
          { // int map test
1167 1174
            typedef typename _Digraph::template ArcMap<int> IntArcMap;
1168 1175
            checkConcept<GraphMap<_Digraph, typename _Digraph::Arc, int>,
1169 1176
              IntArcMap >();
1170 1177
          } { // bool map test
1171 1178
            typedef typename _Digraph::template ArcMap<bool> BoolArcMap;
1172 1179
            checkConcept<GraphMap<_Digraph, typename _Digraph::Arc, bool>,
1173 1180
              BoolArcMap >();
1174 1181
          } { // Dummy map test
1175 1182
            typedef typename _Digraph::template ArcMap<Dummy> DummyArcMap;
1176 1183
            checkConcept<GraphMap<_Digraph, typename _Digraph::Arc, Dummy>,
1177 1184
              DummyArcMap >();
1178 1185
          }
1179 1186
        }
1180 1187

	
1181
        _Digraph& digraph;
1188
        const _Digraph& digraph;
1182 1189
      };
1183 1190
    };
1184 1191

	
1185
    /// \brief An empty mappable base bipartite graph class.
1192
    /// \brief Skeleton class for mappable undirected graphs.
1186 1193
    ///
1187
    /// This class provides beside the core graph features
1188
    /// map interface for the graph structure.
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).
1189 1197
    /// This concept is part of the Graph concept.
1190 1198
    template <typename BAS = BaseGraphComponent>
1191 1199
    class MappableGraphComponent : public MappableDigraphComponent<BAS>  {
1192 1200
    public:
1193 1201

	
1194 1202
      typedef BAS Base;
1195 1203
      typedef typename Base::Edge Edge;
1196 1204

	
1197 1205
      typedef MappableGraphComponent Graph;
1198 1206

	
1199
      /// \brief ReadWrite map of the edges.
1207
      /// \brief Standard graph map for the edges.
1200 1208
      ///
1201
      /// ReadWrite map of the edges.
1202
      ///
1209
      /// Standard graph map for the edges.
1203 1210
      template <typename V>
1204
      class EdgeMap : public GraphMap<Graph, Edge, V> {
1211
      class EdgeMap : public GraphMap<MappableGraphComponent, Edge, V> {
1205 1212
      public:
1206 1213
        typedef GraphMap<MappableGraphComponent, Edge, V> Parent;
1207 1214

	
1208 1215
        /// \brief Construct a new map.
1209 1216
        ///
1210 1217
        /// Construct a new map for the graph.
1211 1218
        explicit EdgeMap(const MappableGraphComponent& graph)
1212 1219
          : Parent(graph) {}
1213 1220

	
1214 1221
        /// \brief Construct a new map with default value.
1215 1222
        ///
1216
        /// Construct a new map for the graph and initalise the values.
1223
        /// Construct a new map for the graph and initalize the values.
1217 1224
        EdgeMap(const MappableGraphComponent& graph, const V& value)
1218 1225
          : Parent(graph, value) {}
1219 1226

	
1220 1227
      private:
1221 1228
        /// \brief Copy constructor.
1222 1229
        ///
1223 1230
        /// Copy Constructor.
1224 1231
        EdgeMap(const EdgeMap& nm) : Parent(nm) {}
1225 1232

	
1226
        /// \brief Assign operator.
1233
        /// \brief Assignment operator.
1227 1234
        ///
1228
        /// Assign operator.
1235
        /// Assignment operator.
1229 1236
        template <typename CMap>
1230 1237
        EdgeMap& operator=(const CMap&) {
1231 1238
          checkConcept<ReadMap<Edge, V>, CMap>();
1232 1239
          return *this;
1233 1240
        }
1234 1241

	
1235 1242
      };
1236 1243

	
1237 1244

	
1238 1245
      template <typename _Graph>
1239 1246
      struct Constraints {
1240 1247

	
1241 1248
        struct Dummy {
1242 1249
          int value;
1243 1250
          Dummy() : value(0) {}
1244 1251
          Dummy(int _v) : value(_v) {}
1245 1252
        };
1246 1253

	
1247 1254
        void constraints() {
1248
          checkConcept<MappableGraphComponent<Base>, _Graph>();
1255
          checkConcept<MappableDigraphComponent<Base>, _Graph>();
1249 1256

	
1250 1257
          { // int map test
1251 1258
            typedef typename _Graph::template EdgeMap<int> IntEdgeMap;
1252 1259
            checkConcept<GraphMap<_Graph, typename _Graph::Edge, int>,
1253 1260
              IntEdgeMap >();
1254 1261
          } { // bool map test
1255 1262
            typedef typename _Graph::template EdgeMap<bool> BoolEdgeMap;
1256 1263
            checkConcept<GraphMap<_Graph, typename _Graph::Edge, bool>,
1257 1264
              BoolEdgeMap >();
1258 1265
          } { // Dummy map test
1259 1266
            typedef typename _Graph::template EdgeMap<Dummy> DummyEdgeMap;
1260 1267
            checkConcept<GraphMap<_Graph, typename _Graph::Edge, Dummy>,
1261 1268
              DummyEdgeMap >();
1262 1269
          }
1263 1270
        }
1264 1271

	
1265
        _Graph& graph;
1272
        const _Graph& graph;
1266 1273
      };
1267 1274
    };
1268 1275

	
1269
    /// \brief An empty extendable digraph class.
1276
    /// \brief Skeleton class for extendable directed graphs.
1270 1277
    ///
1271
    /// This class provides beside the core digraph features digraph
1272
    /// extendable interface for the digraph structure.  The main
1273
    /// difference between the base and this interface is that the
1274
    /// digraph alterations should handled already on this level.
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.
1275 1282
    template <typename BAS = BaseDigraphComponent>
1276 1283
    class ExtendableDigraphComponent : public BAS {
1277 1284
    public:
1278 1285
      typedef BAS Base;
1279 1286

	
1280 1287
      typedef typename Base::Node Node;
1281 1288
      typedef typename Base::Arc Arc;
1282 1289

	
1283
      /// \brief Adds a new node to the digraph.
1290
      /// \brief Add a new node to the digraph.
1284 1291
      ///
1285
      /// Adds a new node to the digraph.
1286
      ///
1292
      /// This function adds a new node to the digraph.
1287 1293
      Node addNode() {
1288 1294
        return INVALID;
1289 1295
      }
1290 1296

	
1291
      /// \brief Adds a new arc connects the given two nodes.
1297
      /// \brief Add a new arc connecting the given two nodes.
1292 1298
      ///
1293
      /// Adds a new arc connects the the given two nodes.
1299
      /// This function adds a new arc connecting the given two nodes
1300
      /// of the digraph.
1294 1301
      Arc addArc(const Node&, const Node&) {
1295 1302
        return INVALID;
1296 1303
      }
1297 1304

	
1298 1305
      template <typename _Digraph>
1299 1306
      struct Constraints {
1300 1307
        void constraints() {
1301 1308
          checkConcept<Base, _Digraph>();
1302 1309
          typename _Digraph::Node node_a, node_b;
1303 1310
          node_a = digraph.addNode();
1304 1311
          node_b = digraph.addNode();
1305 1312
          typename _Digraph::Arc arc;
1306 1313
          arc = digraph.addArc(node_a, node_b);
1307 1314
        }
1308 1315

	
1309 1316
        _Digraph& digraph;
1310 1317
      };
1311 1318
    };
1312 1319

	
1313
    /// \brief An empty extendable base undirected graph class.
1320
    /// \brief Skeleton class for extendable undirected graphs.
1314 1321
    ///
1315
    /// This class provides beside the core undirected graph features
1316
    /// core undircted graph extend interface for the graph structure.
1317
    /// The main difference between the base and this interface is
1318
    /// that the graph alterations should handled already on this
1319
    /// level.
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.
1320 1326
    template <typename BAS = BaseGraphComponent>
1321 1327
    class ExtendableGraphComponent : public BAS {
1322 1328
    public:
1323 1329

	
1324 1330
      typedef BAS Base;
1325 1331
      typedef typename Base::Node Node;
1326 1332
      typedef typename Base::Edge Edge;
1327 1333

	
1328
      /// \brief Adds a new node to the graph.
1334
      /// \brief Add a new node to the digraph.
1329 1335
      ///
1330
      /// Adds a new node to the graph.
1331
      ///
1336
      /// This function adds a new node to the digraph.
1332 1337
      Node addNode() {
1333 1338
        return INVALID;
1334 1339
      }
1335 1340

	
1336
      /// \brief Adds a new arc connects the given two nodes.
1341
      /// \brief Add a new edge connecting the given two nodes.
1337 1342
      ///
1338
      /// Adds a new arc connects the the given two nodes.
1339
      Edge addArc(const Node&, const Node&) {
1343
      /// This function adds a new edge connecting the given two nodes
1344
      /// of the graph.
1345
      Edge addEdge(const Node&, const Node&) {
1340 1346
        return INVALID;
1341 1347
      }
1342 1348

	
1343 1349
      template <typename _Graph>
1344 1350
      struct Constraints {
1345 1351
        void constraints() {
1346 1352
          checkConcept<Base, _Graph>();
1347 1353
          typename _Graph::Node node_a, node_b;
1348 1354
          node_a = graph.addNode();
1349 1355
          node_b = graph.addNode();
1350 1356
          typename _Graph::Edge edge;
1351 1357
          edge = graph.addEdge(node_a, node_b);
1352 1358
        }
1353 1359

	
1354 1360
        _Graph& graph;
1355 1361
      };
1356 1362
    };
1357 1363

	
1358
    /// \brief An empty erasable digraph class.
1364
    /// \brief Skeleton class for erasable directed graphs.
1359 1365
    ///
1360
    /// This class provides beside the core digraph features core erase
1361
    /// functions for the digraph structure. The main difference between
1362
    /// the base and this interface is that the digraph alterations
1363
    /// should handled already on this level.
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.
1364 1370
    template <typename BAS = BaseDigraphComponent>
1365 1371
    class ErasableDigraphComponent : public BAS {
1366 1372
    public:
1367 1373

	
1368 1374
      typedef BAS Base;
1369 1375
      typedef typename Base::Node Node;
1370 1376
      typedef typename Base::Arc Arc;
1371 1377

	
1372 1378
      /// \brief Erase a node from the digraph.
1373 1379
      ///
1374
      /// Erase a node from the digraph. This function should
1375
      /// erase all arcs connecting to the node.
1380
      /// This function erases the given node from the digraph and all arcs 
1381
      /// connected to the node.
1376 1382
      void erase(const Node&) {}
1377 1383

	
1378 1384
      /// \brief Erase an arc from the digraph.
1379 1385
      ///
1380
      /// Erase an arc from the digraph.
1381
      ///
1386
      /// This function erases the given arc from the digraph.
1382 1387
      void erase(const Arc&) {}
1383 1388

	
1384 1389
      template <typename _Digraph>
1385 1390
      struct Constraints {
1386 1391
        void constraints() {
1387 1392
          checkConcept<Base, _Digraph>();
1388
          typename _Digraph::Node node;
1393
          const typename _Digraph::Node node(INVALID);
1389 1394
          digraph.erase(node);
1390
          typename _Digraph::Arc arc;
1395
          const typename _Digraph::Arc arc(INVALID);
1391 1396
          digraph.erase(arc);
1392 1397
        }
1393 1398

	
1394 1399
        _Digraph& digraph;
1395 1400
      };
1396 1401
    };
1397 1402

	
1398
    /// \brief An empty erasable base undirected graph class.
1403
    /// \brief Skeleton class for erasable undirected graphs.
1399 1404
    ///
1400
    /// This class provides beside the core undirected graph features
1401
    /// core erase functions for the undirceted graph structure. The
1402
    /// main difference between the base and this interface is that
1403
    /// the graph alterations should handled already on this level.
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.
1404 1409
    template <typename BAS = BaseGraphComponent>
1405 1410
    class ErasableGraphComponent : public BAS {
1406 1411
    public:
1407 1412

	
1408 1413
      typedef BAS Base;
1409 1414
      typedef typename Base::Node Node;
1410 1415
      typedef typename Base::Edge Edge;
1411 1416

	
1412 1417
      /// \brief Erase a node from the graph.
1413 1418
      ///
1414
      /// Erase a node from the graph. This function should erase
1415
      /// arcs connecting to the node.
1419
      /// This function erases the given node from the graph and all edges
1420
      /// connected to the node.
1416 1421
      void erase(const Node&) {}
1417 1422

	
1418
      /// \brief Erase an arc from the graph.
1423
      /// \brief Erase an edge from the digraph.
1419 1424
      ///
1420
      /// Erase an arc from the graph.
1421
      ///
1425
      /// This function erases the given edge from the digraph.
1422 1426
      void erase(const Edge&) {}
1423 1427

	
1424 1428
      template <typename _Graph>
1425 1429
      struct Constraints {
1426 1430
        void constraints() {
1427 1431
          checkConcept<Base, _Graph>();
1428
          typename _Graph::Node node;
1432
          const typename _Graph::Node node(INVALID);
1429 1433
          graph.erase(node);
1430
          typename _Graph::Edge edge;
1434
          const typename _Graph::Edge edge(INVALID);
1431 1435
          graph.erase(edge);
1432 1436
        }
1433 1437

	
1434 1438
        _Graph& graph;
1435 1439
      };
1436 1440
    };
1437 1441

	
1438
    /// \brief An empty clearable base digraph class.
1442
    /// \brief Skeleton class for clearable directed graphs.
1439 1443
    ///
1440
    /// This class provides beside the core digraph features core clear
1441
    /// functions for the digraph structure. The main difference between
1442
    /// the base and this interface is that the digraph alterations
1443
    /// should handled already on this level.
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.
1444 1448
    template <typename BAS = BaseDigraphComponent>
1445 1449
    class ClearableDigraphComponent : public BAS {
1446 1450
    public:
1447 1451

	
1448 1452
      typedef BAS Base;
1449 1453

	
1450 1454
      /// \brief Erase all nodes and arcs from the digraph.
1451 1455
      ///
1452
      /// Erase all nodes and arcs from the digraph.
1453
      ///
1456
      /// This function erases all nodes and arcs from the digraph.
1454 1457
      void clear() {}
1455 1458

	
1456 1459
      template <typename _Digraph>
1457 1460
      struct Constraints {
1458 1461
        void constraints() {
1459 1462
          checkConcept<Base, _Digraph>();
1460 1463
          digraph.clear();
1461 1464
        }
1462 1465

	
1463
        _Digraph digraph;
1466
        _Digraph& digraph;
1464 1467
      };
1465 1468
    };
1466 1469

	
1467
    /// \brief An empty clearable base undirected graph class.
1470
    /// \brief Skeleton class for clearable undirected graphs.
1468 1471
    ///
1469
    /// This class provides beside the core undirected graph features
1470
    /// core clear functions for the undirected graph structure. The
1471
    /// main difference between the base and this interface is that
1472
    /// the graph alterations should handled already on this level.
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.
1473 1476
    template <typename BAS = BaseGraphComponent>
1474 1477
    class ClearableGraphComponent : public ClearableDigraphComponent<BAS> {
1475 1478
    public:
1476 1479

	
1477 1480
      typedef BAS Base;
1478 1481

	
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

	
1479 1487
      template <typename _Graph>
1480 1488
      struct Constraints {
1481 1489
        void constraints() {
1482
          checkConcept<ClearableGraphComponent<Base>, _Graph>();
1490
          checkConcept<Base, _Graph>();
1491
          graph.clear();
1483 1492
        }
1484 1493

	
1485
        _Graph graph;
1494
        _Graph& graph;
1486 1495
      };
1487 1496
    };
1488 1497

	
1489 1498
  }
1490 1499

	
1491 1500
}
1492 1501

	
1493 1502
#endif
0 comments (0 inline)