Add new sekeleton pages and complete the TOC
authorPeter Kovacs <kpeter@inf.elte.hu>
Mon, 22 Feb 2010 00:46:59 +0100
changeset 4658557724a139
parent 45 725c60c7492d
child 47 c09d90659170
Add new sekeleton pages and complete the TOC
algorithms.dox
glemon.dox
graph_utils.dox
graphs.dox
maps.dox
toc.txt
tools.dox
undir_graphs.dox
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/algorithms.dox	Mon Feb 22 00:46:59 2010 +0100
     1.3 @@ -0,0 +1,46 @@
     1.4 +/* -*- mode: C++; indent-tabs-mode: nil; -*-
     1.5 + *
     1.6 + * This file is a part of LEMON, a generic C++ optimization library.
     1.7 + *
     1.8 + * Copyright (C) 2003-2010
     1.9 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    1.10 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
    1.11 + *
    1.12 + * Permission to use, modify and distribute this software is granted
    1.13 + * provided that this copyright notice appears in all copies. For
    1.14 + * precise terms see the accompanying LICENSE file.
    1.15 + *
    1.16 + * This software is provided "AS IS" with no warranty of any kind,
    1.17 + * express or implied, and with no claim as to its suitability for any
    1.18 + * purpose.
    1.19 + *
    1.20 + */
    1.21 +
    1.22 +namespace lemon {
    1.23 +/**
    1.24 +[PAGE]sec_algorithms[PAGE] Algorithms
    1.25 +
    1.26 +\todo This page is under construction.
    1.27 +
    1.28 +In addition to the graph structures, the most important parts of LEMON are
    1.29 +the various algorithm implementations, which can be used quite flexibly and
    1.30 +efficiently.
    1.31 +
    1.32 +In this section, we present only some of the most fundamental algorithms.
    1.33 +For a complete overview, see the \ref algs module of the reference manual.
    1.34 +
    1.35 +[SEC]sec_graph_search[SEC] Graph Search
    1.36 +
    1.37 +See \ref Bfs, \ref Dfs and \ref graph_properties.
    1.38 +
    1.39 +[SEC]sec_shortest_paths[SEC] Shortest Paths
    1.40 +
    1.41 +See \ref Dijkstra and \ref BellmanFord.
    1.42 +
    1.43 +[SEC]sec_max_flow[SEC] Maximum Flows
    1.44 +
    1.45 +See \ref Preflow.
    1.46 +
    1.47 +[TRAILER]
    1.48 +*/
    1.49 +}
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/glemon.dox	Mon Feb 22 00:46:59 2010 +0100
     2.3 @@ -0,0 +1,31 @@
     2.4 +/* -*- mode: C++; indent-tabs-mode: nil; -*-
     2.5 + *
     2.6 + * This file is a part of LEMON, a generic C++ optimization library.
     2.7 + *
     2.8 + * Copyright (C) 2003-2010
     2.9 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    2.10 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
    2.11 + *
    2.12 + * Permission to use, modify and distribute this software is granted
    2.13 + * provided that this copyright notice appears in all copies. For
    2.14 + * precise terms see the accompanying LICENSE file.
    2.15 + *
    2.16 + * This software is provided "AS IS" with no warranty of any kind,
    2.17 + * express or implied, and with no claim as to its suitability for any
    2.18 + * purpose.
    2.19 + *
    2.20 + */
    2.21 +
    2.22 +namespace lemon {
    2.23 +/**
    2.24 +[PAGE]sec_glemon[PAGE] gLemon
    2.25 +
    2.26 +\todo This page is under construction.
    2.27 +
    2.28 +gLemon is a graph editor for LEMON. 
    2.29 +
    2.30 +\image html glemon.png
    2.31 +
    2.32 +[TRAILER]
    2.33 +*/
    2.34 +}
     3.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.2 +++ b/graph_utils.dox	Mon Feb 22 00:46:59 2010 +0100
     3.3 @@ -0,0 +1,48 @@
     3.4 +/* -*- mode: C++; indent-tabs-mode: nil; -*-
     3.5 + *
     3.6 + * This file is a part of LEMON, a generic C++ optimization library.
     3.7 + *
     3.8 + * Copyright (C) 2003-2010
     3.9 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    3.10 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
    3.11 + *
    3.12 + * Permission to use, modify and distribute this software is granted
    3.13 + * provided that this copyright notice appears in all copies. For
    3.14 + * precise terms see the accompanying LICENSE file.
    3.15 + *
    3.16 + * This software is provided "AS IS" with no warranty of any kind,
    3.17 + * express or implied, and with no claim as to its suitability for any
    3.18 + * purpose.
    3.19 + *
    3.20 + */
    3.21 +
    3.22 +namespace lemon {
    3.23 +/**
    3.24 +[PAGE]sec_graph_utilities[PAGE] Basic Graph Utilities
    3.25 +
    3.26 +\todo This page is under construction.
    3.27 +
    3.28 +
    3.29 +[SEC]sec_util_item_count[SEC] Count Graph Items
    3.30 +
    3.31 +See countNodes(), countArcs(), countEdges(),
    3.32 +countOutArcs(), countInArcs(), countIncEdges().
    3.33 +
    3.34 +
    3.35 +[SEC]sec_util_graph_copy[SEC] Copying a Graph
    3.36 +
    3.37 +See DigraphCopy and GraphCopy.
    3.38 +
    3.39 +
    3.40 +[SEC]sec_util_typedefs[SEC] Type Definitions
    3.41 +
    3.42 +See DIGRAPH_TYPEDEFS, GRAPH_TYPEDEFS and their TEMPLATE_* variants.
    3.43 +
    3.44 +
    3.45 +[SEC]sec_util_graph_maps[SEC] Special Graph Maps
    3.46 +
    3.47 +See \ref graph_maps in the reference manual.
    3.48 +
    3.49 +[TRAILER]
    3.50 +*/
    3.51 +}
     4.1 --- a/graphs.dox	Mon Feb 22 00:43:23 2010 +0100
     4.2 +++ b/graphs.dox	Mon Feb 22 00:46:59 2010 +0100
     4.3 @@ -23,8 +23,8 @@
     4.4  The implementation of combinatorial algorithms heavily relies on
     4.5  efficient graph structures. Diverse applications require the
     4.6  usage of different physical graph storages.
     4.7 -In \ref sec_basics, we have introduced a general digraph structure,
     4.8 -\ref ListDigraph. Apart from this class, LEMON provides several
     4.9 +Until now, we used two general graph structures, \ref ListDigraph
    4.10 +and \ref ListGraph. Apart from these types, LEMON also provides several
    4.11  other classes for handling directed and undirected graphs to meet the
    4.12  diverging requirements of the possible users. In order to save on running
    4.13  time or on memory usage, some structures may fail to support some graph
    4.14 @@ -61,7 +61,7 @@
    4.15  all the LEMON algorithms and classes will work with them properly.
    4.16  
    4.17  
    4.18 -[SEC]sec_digraph_types[SEC] Digraph Structures
    4.19 +[SEC]sec_digraph_types[SEC] Directed Graph Structures
    4.20  
    4.21  The already used \ref ListDigraph class is the most versatile directed
    4.22  graph structure. As its name suggests, it is based on linked lists,
    4.23 @@ -90,123 +90,16 @@
    4.24  arcs or nodes, moreover, the class needs constant space in memory.
    4.25  
    4.26  
    4.27 -[SEC]sec_undir_graphs[SEC] Undirected Graphs
    4.28 +[SEC]sec_graph_types[SEC] Undirected Graph Structures
    4.29  
    4.30 -LEMON also provides undirected graph structures. For example,
    4.31 -\ref ListGraph and \ref SmartGraph are the undirected versions of
    4.32 -\ref ListDigraph and \ref SmartDigraph, respectively.
    4.33 -They provide similar features to the digraph structures.
    4.34 +The general undirected graph classes, \ref ListGraph and \ref SmartGraph
    4.35 +have similar implementations as their directed variants.
    4.36 +Therefore, \ref SmartDigraph is more efficient, but \ref ListGraph provides
    4.37 +more functionality.
    4.38  
    4.39 -The \ref concepts::Graph "undirected graphs" also fulfill the concept of
    4.40 -\ref concepts::Digraph "directed graphs", in such a way that each
    4.41 -undirected \e edge of a graph can also be regarded as two oppositely
    4.42 -directed \e arcs. As a result, all directed graph algorithms automatically
    4.43 -run on undirected graphs, as well.
    4.44 -
    4.45 -Undirected graphs provide an \c Edge type for the \e undirected \e edges
    4.46 -and an \c Arc type for the \e directed \e arcs. The \c Arc type is
    4.47 -convertible to \c Edge (or inherited from it), thus the corresponding
    4.48 -edge can always be obtained from an arc.
    4.49 -
    4.50 -Only nodes and edges can be added to or removed from an undirected
    4.51 -graph and the corresponding arcs are added or removed automatically
    4.52 -(there are twice as many arcs as edges)
    4.53 -
    4.54 -For example,
    4.55 -\code
    4.56 -  ListGraph g;
    4.57 -
    4.58 -  ListGraph::Node a = g.addNode();
    4.59 -  ListGraph::Node b = g.addNode();
    4.60 -  ListGraph::Node c = g.addNode();
    4.61 -
    4.62 -  ListGraph::Edge e = g.addEdge(a,b);
    4.63 -  g.addEdge(b,c);
    4.64 -  g.addEdge(c,a);
    4.65 -\endcode
    4.66 -
    4.67 -Each edge has an inherent orientation, thus it can be defined whether an
    4.68 -arc is forward or backward oriented in an undirected graph with respect
    4.69 -to this default oriantation of the represented edge.
    4.70 -The direction of an arc can be obtained and set using the functions
    4.71 -\ref concepts::Graph::direction() "direction()" and
    4.72 -\ref concepts::Graph::direct() "direct()", respectively.
    4.73 -
    4.74 -For example,
    4.75 -\code
    4.76 -  ListGraph::Arc a1 = g.direct(e, true);    // a1 is the forward arc
    4.77 -  ListGraph::Arc a2 = g.direct(e, false);   // a2 is the backward arc
    4.78 -
    4.79 -  if (a2 == g.oppositeArc(a1))
    4.80 -    std::cout << "a2 is the opposite of a1" << std::endl;
    4.81 -\endcode
    4.82 -
    4.83 -The end nodes of an edge can be obtained using the functions
    4.84 -\ref concepts::Graph::source() "u()" and
    4.85 -\ref concepts::Graph::target() "v()", while the
    4.86 -\ref concepts::Graph::source() "source()" and
    4.87 -\ref concepts::Graph::target() "target()" can be used for arcs.
    4.88 -
    4.89 -\code
    4.90 -  std::cout << "Edge " << g.id(e) << " connects node "
    4.91 -    << g.id(g.u(e)) << " and node " << g.id(g.v(e)) << std::endl;
    4.92 -
    4.93 -  std::cout << "Arc " << g.id(a2) << " goes from node "
    4.94 -    << g.id(g.source(a2)) << " to node " << g.id(g.target(a2)) << std::endl;
    4.95 -\endcode
    4.96 -
    4.97 -
    4.98 -Similarly to the digraphs, the undirected graphs also provide iterators
    4.99 -\ref concepts::Graph::NodeIt "NodeIt", \ref concepts::Graph::ArcIt "ArcIt",
   4.100 -\ref concepts::Graph::OutArcIt "OutArcIt" and \ref concepts::Graph::InArcIt
   4.101 -"InArcIt", which can be used the same way.
   4.102 -However, they also have iterator classes for edges.
   4.103 -\ref concepts::Graph::EdgeIt "EdgeIt" traverses all edges in the graph and
   4.104 -\ref concepts::Graph::IncEdgeIt "IncEdgeIt" lists the incident edges of a
   4.105 -certain node.
   4.106 -
   4.107 -For example, the degree of each node can be computed and stored in a node map
   4.108 -like this:
   4.109 -
   4.110 -\code
   4.111 -  ListGraph::NodeMap<int> deg(g, 0);
   4.112 -  for (ListGraph::NodeIt n(g); n != INVALID; ++n) {
   4.113 -    for (ListGraph::IncEdgeIt e(g, n); e != INVALID; ++e) {
   4.114 -      deg[n]++;
   4.115 -    }
   4.116 -  }
   4.117 -\endcode
   4.118 -
   4.119 -In an undirected graph, both \ref concepts::Graph::OutArcIt "OutArcIt"
   4.120 -and \ref concepts::Graph::InArcIt "InArcIt" iterates on the same \e edges
   4.121 -but with opposite direction. They are convertible to both \c Arc and
   4.122 -\c Edge types. \ref concepts::Graph::IncEdgeIt "IncEdgeIt" also iterates
   4.123 -on these edges, but it is not convertible to \c Arc, only to \c Edge.
   4.124 -
   4.125 -Apart from the node and arc maps, an undirected graph also defines
   4.126 -a template member class for constructing edge maps. These maps can be
   4.127 -used in conjunction with both edges and arcs.
   4.128 -
   4.129 -For example,
   4.130 -\code
   4.131 -  ListGraph::EdgeMap cost(g);
   4.132 -  cost[e] = 10;
   4.133 -  std::cout << cost[e] << std::endl;
   4.134 -  std::cout << cost[a1] << ", " << cost[a2] << std::endl;
   4.135 -
   4.136 -  ListGraph::ArcMap arc_cost(g);
   4.137 -  arc_cost[a1] = cost[a1];
   4.138 -  arc_cost[a2] = 2 * cost[a2];
   4.139 -  // std::cout << arc_cost[e] << std::endl;   // this is not valid
   4.140 -  std::cout << arc_cost[a1] << ", " << arc_cost[a2] << std::endl;
   4.141 -\endcode
   4.142 -
   4.143 -[SEC]sec_special_graphs[SEC] Special Graph Structures
   4.144 -
   4.145 -In addition to the general undirected classes \ref ListGraph and
   4.146 -\ref SmartGraph, LEMON also provides special purpose graph types for
   4.147 -handling \ref FullGraph "full graphs", \ref GridGraph "grid graphs" and
   4.148 -\ref HypercubeGraph "hypercube graphs".
   4.149 +In addition to these general structures, LEMON also provides special purpose
   4.150 +undirected graph types for handling \ref FullGraph "full graphs",
   4.151 +\ref GridGraph "grid graphs" and \ref HypercubeGraph "hypercube graphs".
   4.152  They all static structures, i.e. they do not allow distinct item additions
   4.153  or deletions, the graph has to be built at once.
   4.154  
     5.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     5.2 +++ b/maps.dox	Mon Feb 22 00:46:59 2010 +0100
     5.3 @@ -0,0 +1,45 @@
     5.4 +/* -*- mode: C++; indent-tabs-mode: nil; -*-
     5.5 + *
     5.6 + * This file is a part of LEMON, a generic C++ optimization library.
     5.7 + *
     5.8 + * Copyright (C) 2003-2010
     5.9 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    5.10 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
    5.11 + *
    5.12 + * Permission to use, modify and distribute this software is granted
    5.13 + * provided that this copyright notice appears in all copies. For
    5.14 + * precise terms see the accompanying LICENSE file.
    5.15 + *
    5.16 + * This software is provided "AS IS" with no warranty of any kind,
    5.17 + * express or implied, and with no claim as to its suitability for any
    5.18 + * purpose.
    5.19 + *
    5.20 + */
    5.21 +
    5.22 +namespace lemon {
    5.23 +/**
    5.24 +[PAGE]sec_maps[PAGE] Maps
    5.25 +
    5.26 +\todo This page is under construction.
    5.27 +
    5.28 +[SEC]sec_map_concepts[SEC] Map Concepts
    5.29 +
    5.30 +...
    5.31 +
    5.32 +
    5.33 +[SEC]sec_own_maps[SEC] Creating Own Maps
    5.34 +
    5.35 +...
    5.36 +
    5.37 +[SEC]sec_map_adaptors[SEC] Map Adaptors
    5.38 +
    5.39 +See \ref map_adaptors in the reference manual.
    5.40 +
    5.41 +
    5.42 +[SEC]sec_algs_with_maps[SEC] Using Algorithms with Special Maps
    5.43 +
    5.44 +...
    5.45 +
    5.46 +[TRAILER]
    5.47 +*/
    5.48 +}
     6.1 --- a/toc.txt	Mon Feb 22 00:43:23 2010 +0100
     6.2 +++ b/toc.txt	Mon Feb 22 00:46:59 2010 +0100
     6.3 @@ -7,20 +7,27 @@
     6.4  ** sec_digraph_it
     6.5  ** sec_digraph_maps
     6.6  ** sec_naming_conv
     6.7 -*_sec_algorithms
     6.8 -**_sec_alg_graph_search
     6.9 -**_sec_alg_shortest_paths
    6.10 -**_sec_alg_spanning_tree
    6.11 -**_sec_alg_max_flow
    6.12 +* sec_algorithms
    6.13 +** sec_graph_search
    6.14 +** sec_shortest_paths
    6.15 +** sec_max_flow
    6.16 +* sec_undir_graphs
    6.17 +** sec_undir_graph_use
    6.18 +** sec_undir_graph_algs
    6.19 +* sec_graph_utilities
    6.20 +** sec_util_item_count
    6.21 +** sec_util_graph_copy
    6.22 +** sec_util_typedefs
    6.23 +** sec_util_graph_maps
    6.24 +* sec_maps
    6.25 +** sec_map_concepts
    6.26 +** sec_own_maps
    6.27 +** sec_map_adaptors
    6.28 +** sec_algs_with_maps
    6.29  * sec_graph_structures
    6.30  ** sec_graph_concepts
    6.31  ** sec_digraph_types
    6.32 -** sec_undir_graphs
    6.33 -** sec_special_graphs
    6.34 -*_sec_maps
    6.35 -**_sec_map_concepts
    6.36 -**_own_maps
    6.37 -**_algs_with_maps
    6.38 +** sec_graph_types
    6.39  * sec_graph_adaptors
    6.40  ** sec_reverse_digraph
    6.41  ** sec_subgraphs
    6.42 @@ -29,8 +36,9 @@
    6.43  * sec_lgf
    6.44  * sec_tools
    6.45  ** sec_aux_structures
    6.46 -**_sec_time_count
    6.47 -**_sec_random
    6.48  ** sec_graph_to_eps
    6.49 -**_sec_glemon
    6.50 +** sec_time_count
    6.51 +** sec_random
    6.52 +** sec_arg_parser
    6.53 +* sec_glemon
    6.54  * sec_license
     7.1 --- a/tools.dox	Mon Feb 22 00:43:23 2010 +0100
     7.2 +++ b/tools.dox	Mon Feb 22 00:46:59 2010 +0100
     7.3 @@ -67,6 +67,21 @@
     7.4  
     7.5  \image html graph_to_eps.png
     7.6  
     7.7 +
     7.8 +[SEC]sec_time_count[SEC] Time Measuring and Counting
     7.9 +
    7.10 +See \ref timecount.
    7.11 +
    7.12 +
    7.13 +[SEC]sec_random[SEC] Random Number Generation
    7.14 +
    7.15 +See \ref Random.
    7.16 +
    7.17 +
    7.18 +[SEC]sec_arg_parser[SEC] Argument Parser
    7.19 +
    7.20 +See \ref ArgParser.
    7.21 +
    7.22  [TRAILER]
    7.23  */
    7.24  }
     8.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     8.2 +++ b/undir_graphs.dox	Mon Feb 22 00:46:59 2010 +0100
     8.3 @@ -0,0 +1,141 @@
     8.4 +/* -*- mode: C++; indent-tabs-mode: nil; -*-
     8.5 + *
     8.6 + * This file is a part of LEMON, a generic C++ optimization library.
     8.7 + *
     8.8 + * Copyright (C) 2003-2010
     8.9 + * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
    8.10 + * (Egervary Research Group on Combinatorial Optimization, EGRES).
    8.11 + *
    8.12 + * Permission to use, modify and distribute this software is granted
    8.13 + * provided that this copyright notice appears in all copies. For
    8.14 + * precise terms see the accompanying LICENSE file.
    8.15 + *
    8.16 + * This software is provided "AS IS" with no warranty of any kind,
    8.17 + * express or implied, and with no claim as to its suitability for any
    8.18 + * purpose.
    8.19 + *
    8.20 + */
    8.21 +
    8.22 +namespace lemon {
    8.23 +/**
    8.24 +[PAGE]sec_undir_graphs[PAGE] Undirected Graphs
    8.25 +
    8.26 +In \ref sec_basics, we have introduced a general digraph structure,
    8.27 +\ref ListDigraph. LEMON also contains undirected graph classes,
    8.28 +for example, \ref ListGraph is the undirected versions of \ref ListDigraph.
    8.29 +
    8.30 +[SEC]sec_undir_graph_use[SEC] Working with Undirected Graphs
    8.31 +
    8.32 +The \ref concepts::Graph "undirected graphs" also fulfill the concept of
    8.33 +\ref concepts::Digraph "directed graphs", in such a way that each
    8.34 +undirected \e edge of a graph can also be regarded as two oppositely
    8.35 +directed \e arcs. As a result, all directed graph algorithms automatically
    8.36 +run on undirected graphs, as well.
    8.37 +
    8.38 +Undirected graphs provide an \c Edge type for the \e undirected \e edges
    8.39 +and an \c Arc type for the \e directed \e arcs. The \c Arc type is
    8.40 +convertible to \c Edge (or inherited from it), thus the corresponding
    8.41 +edge can always be obtained from an arc.
    8.42 +Of course, only nodes and edges can be added to or removed from an undirected
    8.43 +graph and the corresponding arcs are added or removed automatically
    8.44 +(there are twice as many arcs as edges)
    8.45 +
    8.46 +For example,
    8.47 +\code
    8.48 +  ListGraph g;
    8.49 +
    8.50 +  ListGraph::Node a = g.addNode();
    8.51 +  ListGraph::Node b = g.addNode();
    8.52 +  ListGraph::Node c = g.addNode();
    8.53 +
    8.54 +  ListGraph::Edge e = g.addEdge(a,b);
    8.55 +  g.addEdge(b,c);
    8.56 +  g.addEdge(c,a);
    8.57 +\endcode
    8.58 +
    8.59 +Each edge has an inherent orientation, thus it can be defined whether
    8.60 +an arc is forward or backward oriented in an undirected graph with respect
    8.61 +to this default oriantation of the represented edge.
    8.62 +The direction of an arc can be obtained and set using the functions
    8.63 +\ref concepts::Graph::direction() "direction()" and
    8.64 +\ref concepts::Graph::direct() "direct()", respectively.
    8.65 +
    8.66 +For example,
    8.67 +\code
    8.68 +  ListGraph::Arc a1 = g.direct(e, true);    // a1 is the forward arc
    8.69 +  ListGraph::Arc a2 = g.direct(e, false);   // a2 is the backward arc
    8.70 +
    8.71 +  if (a2 == g.oppositeArc(a1))
    8.72 +    std::cout << "a2 is the opposite of a1" << std::endl;
    8.73 +\endcode
    8.74 +
    8.75 +The end nodes of an edge can be obtained using the functions
    8.76 +\ref concepts::Graph::source() "u()" and
    8.77 +\ref concepts::Graph::target() "v()", while the
    8.78 +\ref concepts::Graph::source() "source()" and
    8.79 +\ref concepts::Graph::target() "target()" can be used for arcs.
    8.80 +
    8.81 +\code
    8.82 +  std::cout << "Edge " << g.id(e) << " connects node "
    8.83 +    << g.id(g.u(e)) << " and node " << g.id(g.v(e)) << std::endl;
    8.84 +
    8.85 +  std::cout << "Arc " << g.id(a2) << " goes from node "
    8.86 +    << g.id(g.source(a2)) << " to node " << g.id(g.target(a2)) << std::endl;
    8.87 +\endcode
    8.88 +
    8.89 +Similarly to the digraphs, the undirected graphs also provide iterators
    8.90 +\ref concepts::Graph::NodeIt "NodeIt", \ref concepts::Graph::ArcIt "ArcIt",
    8.91 +\ref concepts::Graph::OutArcIt "OutArcIt" and \ref concepts::Graph::InArcIt
    8.92 +"InArcIt", which can be used the same way.
    8.93 +However, they also have iterator classes for edges.
    8.94 +\ref concepts::Graph::EdgeIt "EdgeIt" traverses all edges in the graph and
    8.95 +\ref concepts::Graph::IncEdgeIt "IncEdgeIt" lists the incident edges of a
    8.96 +certain node.
    8.97 +
    8.98 +For example, the degree of each node can be printed out like this:
    8.99 +
   8.100 +\code
   8.101 +  for (ListGraph::NodeIt n(g); n != INVALID; ++n) {
   8.102 +    int cnt = 0;
   8.103 +    for (ListGraph::IncEdgeIt e(g, n); e != INVALID; ++e) {
   8.104 +      cnt++;
   8.105 +    }
   8.106 +    std::cout << "deg(" << g.id(n) << ") = " << cnt << std::endl;
   8.107 +  }
   8.108 +\endcode
   8.109 +
   8.110 +In an undirected graph, both \ref concepts::Graph::OutArcIt "OutArcIt"
   8.111 +and \ref concepts::Graph::InArcIt "InArcIt" iterates on the same \e edges
   8.112 +but with opposite direction. They are convertible to both \c Arc and
   8.113 +\c Edge types. \ref concepts::Graph::IncEdgeIt "IncEdgeIt" also iterates
   8.114 +on these edges, but it is not convertible to \c Arc, only to \c Edge.
   8.115 +
   8.116 +Apart from the node and arc maps, an undirected graph also defines
   8.117 +a member class for constructing edge maps. These maps can be
   8.118 +used in conjunction with both edges and arcs.
   8.119 +
   8.120 +For example,
   8.121 +\code
   8.122 +  ListGraph::EdgeMap cost(g);
   8.123 +  cost[e] = 10;
   8.124 +  std::cout << cost[e] << std::endl;
   8.125 +  std::cout << cost[a1] << ", " << cost[a2] << std::endl;
   8.126 +
   8.127 +  ListGraph::ArcMap arc_cost(g);
   8.128 +  arc_cost[a1] = cost[a1];
   8.129 +  arc_cost[a2] = 2 * cost[a2];
   8.130 +  // std::cout << arc_cost[e] << std::endl;   // this is not valid
   8.131 +  std::cout << arc_cost[a1] << ", " << arc_cost[a2] << std::endl;
   8.132 +\endcode
   8.133 +
   8.134 +
   8.135 +[SEC]sec_undir_graph_algs[SEC] Undirected Graph Algorihtms
   8.136 +
   8.137 +\todo This subsection is under construction.
   8.138 +
   8.139 +See \ref spantree for the minimum spanning tree algorithms and
   8.140 +\ref matching for matching algorithms.
   8.141 +
   8.142 +[TRAILER]
   8.143 +*/
   8.144 +}