doc/groups.dox
changeset 830 ef88c0a30f85
parent 817 432c54cec63c
child 879 25804ef35064
     1.1 --- a/doc/groups.dox	Mon Jan 12 23:11:39 2009 +0100
     1.2 +++ b/doc/groups.dox	Thu Nov 05 15:48:01 2009 +0100
     1.3 @@ -20,7 +20,7 @@
     1.4  
     1.5  /**
     1.6  @defgroup datas Data Structures
     1.7 -This group describes the several data structures implemented in LEMON.
     1.8 +This group contains the several data structures implemented in LEMON.
     1.9  */
    1.10  
    1.11  /**
    1.12 @@ -138,21 +138,11 @@
    1.13  */
    1.14  
    1.15  /**
    1.16 -@defgroup semi_adaptors Semi-Adaptor Classes for Graphs
    1.17 -@ingroup graphs
    1.18 -\brief Graph types between real graphs and graph adaptors.
    1.19 -
    1.20 -This group describes some graph types between real graphs and graph adaptors.
    1.21 -These classes wrap graphs to give new functionality as the adaptors do it.
    1.22 -On the other hand they are not light-weight structures as the adaptors.
    1.23 -*/
    1.24 -
    1.25 -/**
    1.26  @defgroup maps Maps
    1.27  @ingroup datas
    1.28  \brief Map structures implemented in LEMON.
    1.29  
    1.30 -This group describes the map structures implemented in LEMON.
    1.31 +This group contains the map structures implemented in LEMON.
    1.32  
    1.33  LEMON provides several special purpose maps and map adaptors that e.g. combine
    1.34  new maps from existing ones.
    1.35 @@ -165,7 +155,7 @@
    1.36  @ingroup maps
    1.37  \brief Special graph-related maps.
    1.38  
    1.39 -This group describes maps that are specifically designed to assign
    1.40 +This group contains maps that are specifically designed to assign
    1.41  values to the nodes and arcs/edges of graphs.
    1.42  
    1.43  If you are looking for the standard graph maps (\c NodeMap, \c ArcMap,
    1.44 @@ -177,7 +167,7 @@
    1.45  \ingroup maps
    1.46  \brief Tools to create new maps from existing ones
    1.47  
    1.48 -This group describes map adaptors that are used to create "implicit"
    1.49 +This group contains map adaptors that are used to create "implicit"
    1.50  maps from other maps.
    1.51  
    1.52  Most of them are \ref concepts::ReadMap "read-only maps".
    1.53 @@ -236,19 +226,11 @@
    1.54  */
    1.55  
    1.56  /**
    1.57 -@defgroup matrices Matrices
    1.58 -@ingroup datas
    1.59 -\brief Two dimensional data storages implemented in LEMON.
    1.60 -
    1.61 -This group describes two dimensional data storages implemented in LEMON.
    1.62 -*/
    1.63 -
    1.64 -/**
    1.65  @defgroup paths Path Structures
    1.66  @ingroup datas
    1.67  \brief %Path structures implemented in LEMON.
    1.68  
    1.69 -This group describes the path structures implemented in LEMON.
    1.70 +This group contains the path structures implemented in LEMON.
    1.71  
    1.72  LEMON provides flexible data structures to work with paths.
    1.73  All of them have similar interfaces and they can be copied easily with
    1.74 @@ -256,7 +238,36 @@
    1.75  efficient to have e.g. the Dijkstra algorithm to store its result in
    1.76  any kind of path structure.
    1.77  
    1.78 -\sa lemon::concepts::Path
    1.79 +\sa \ref concepts::Path "Path concept"
    1.80 +*/
    1.81 +
    1.82 +/**
    1.83 +@defgroup heaps Heap Structures
    1.84 +@ingroup datas
    1.85 +\brief %Heap structures implemented in LEMON.
    1.86 +
    1.87 +This group contains the heap structures implemented in LEMON.
    1.88 +
    1.89 +LEMON provides several heap classes. They are efficient implementations
    1.90 +of the abstract data type \e priority \e queue. They store items with
    1.91 +specified values called \e priorities in such a way that finding and
    1.92 +removing the item with minimum priority are efficient.
    1.93 +The basic operations are adding and erasing items, changing the priority
    1.94 +of an item, etc.
    1.95 +
    1.96 +Heaps are crucial in several algorithms, such as Dijkstra and Prim.
    1.97 +The heap implementations have the same interface, thus any of them can be
    1.98 +used easily in such algorithms.
    1.99 +
   1.100 +\sa \ref concepts::Heap "Heap concept"
   1.101 +*/
   1.102 +
   1.103 +/**
   1.104 +@defgroup matrices Matrices
   1.105 +@ingroup datas
   1.106 +\brief Two dimensional data storages implemented in LEMON.
   1.107 +
   1.108 +This group contains two dimensional data storages implemented in LEMON.
   1.109  */
   1.110  
   1.111  /**
   1.112 @@ -264,16 +275,38 @@
   1.113  @ingroup datas
   1.114  \brief Auxiliary data structures implemented in LEMON.
   1.115  
   1.116 -This group describes some data structures implemented in LEMON in
   1.117 +This group contains some data structures implemented in LEMON in
   1.118  order to make it easier to implement combinatorial algorithms.
   1.119  */
   1.120  
   1.121  /**
   1.122 +@defgroup geomdat Geometric Data Structures
   1.123 +@ingroup auxdat
   1.124 +\brief Geometric data structures implemented in LEMON.
   1.125 +
   1.126 +This group contains geometric data structures implemented in LEMON.
   1.127 +
   1.128 + - \ref lemon::dim2::Point "dim2::Point" implements a two dimensional
   1.129 +   vector with the usual operations.
   1.130 + - \ref lemon::dim2::Box "dim2::Box" can be used to determine the
   1.131 +   rectangular bounding box of a set of \ref lemon::dim2::Point
   1.132 +   "dim2::Point"'s.
   1.133 +*/
   1.134 +
   1.135 +/**
   1.136 +@defgroup matrices Matrices
   1.137 +@ingroup auxdat
   1.138 +\brief Two dimensional data storages implemented in LEMON.
   1.139 +
   1.140 +This group contains two dimensional data storages implemented in LEMON.
   1.141 +*/
   1.142 +
   1.143 +/**
   1.144  @defgroup algs Algorithms
   1.145 -\brief This group describes the several algorithms
   1.146 +\brief This group contains the several algorithms
   1.147  implemented in LEMON.
   1.148  
   1.149 -This group describes the several algorithms
   1.150 +This group contains the several algorithms
   1.151  implemented in LEMON.
   1.152  */
   1.153  
   1.154 @@ -282,8 +315,9 @@
   1.155  @ingroup algs
   1.156  \brief Common graph search algorithms.
   1.157  
   1.158 -This group describes the common graph search algorithms, namely
   1.159 -\e breadth-first \e search (BFS) and \e depth-first \e search (DFS).
   1.160 +This group contains the common graph search algorithms, namely
   1.161 +\e breadth-first \e search (BFS) and \e depth-first \e search (DFS)
   1.162 +\ref clrs01algorithms.
   1.163  */
   1.164  
   1.165  /**
   1.166 @@ -291,7 +325,8 @@
   1.167  @ingroup algs
   1.168  \brief Algorithms for finding shortest paths.
   1.169  
   1.170 -This group describes the algorithms for finding shortest paths in digraphs.
   1.171 +This group contains the algorithms for finding shortest paths in digraphs
   1.172 +\ref clrs01algorithms.
   1.173  
   1.174   - \ref Dijkstra algorithm for finding shortest paths from a source node
   1.175     when all arc lengths are non-negative.
   1.176 @@ -308,72 +343,83 @@
   1.177  */
   1.178  
   1.179  /**
   1.180 +@defgroup spantree Minimum Spanning Tree Algorithms
   1.181 +@ingroup algs
   1.182 +\brief Algorithms for finding minimum cost spanning trees and arborescences.
   1.183 +
   1.184 +This group contains the algorithms for finding minimum cost spanning
   1.185 +trees and arborescences \ref clrs01algorithms.
   1.186 +*/
   1.187 +
   1.188 +/**
   1.189  @defgroup max_flow Maximum Flow Algorithms
   1.190  @ingroup algs
   1.191  \brief Algorithms for finding maximum flows.
   1.192  
   1.193 -This group describes the algorithms for finding maximum flows and
   1.194 -feasible circulations.
   1.195 +This group contains the algorithms for finding maximum flows and
   1.196 +feasible circulations \ref clrs01algorithms, \ref amo93networkflows.
   1.197  
   1.198  The \e maximum \e flow \e problem is to find a flow of maximum value between
   1.199  a single source and a single target. Formally, there is a \f$G=(V,A)\f$
   1.200 -digraph, a \f$cap:A\rightarrow\mathbf{R}^+_0\f$ capacity function and
   1.201 +digraph, a \f$cap: A\rightarrow\mathbf{R}^+_0\f$ capacity function and
   1.202  \f$s, t \in V\f$ source and target nodes.
   1.203 -A maximum flow is an \f$f:A\rightarrow\mathbf{R}^+_0\f$ solution of the
   1.204 +A maximum flow is an \f$f: A\rightarrow\mathbf{R}^+_0\f$ solution of the
   1.205  following optimization problem.
   1.206  
   1.207 -\f[ \max\sum_{a\in\delta_{out}(s)}f(a) - \sum_{a\in\delta_{in}(s)}f(a) \f]
   1.208 -\f[ \sum_{a\in\delta_{out}(v)} f(a) = \sum_{a\in\delta_{in}(v)} f(a)
   1.209 -    \qquad \forall v\in V\setminus\{s,t\} \f]
   1.210 -\f[ 0 \leq f(a) \leq cap(a) \qquad \forall a\in A \f]
   1.211 +\f[ \max\sum_{sv\in A} f(sv) - \sum_{vs\in A} f(vs) \f]
   1.212 +\f[ \sum_{uv\in A} f(uv) = \sum_{vu\in A} f(vu)
   1.213 +    \quad \forall u\in V\setminus\{s,t\} \f]
   1.214 +\f[ 0 \leq f(uv) \leq cap(uv) \quad \forall uv\in A \f]
   1.215  
   1.216  LEMON contains several algorithms for solving maximum flow problems:
   1.217 -- \ref EdmondsKarp Edmonds-Karp algorithm.
   1.218 -- \ref Preflow Goldberg-Tarjan's preflow push-relabel algorithm.
   1.219 -- \ref DinitzSleatorTarjan Dinitz's blocking flow algorithm with dynamic trees.
   1.220 -- \ref GoldbergTarjan Preflow push-relabel algorithm with dynamic trees.
   1.221 +- \ref EdmondsKarp Edmonds-Karp algorithm
   1.222 +  \ref edmondskarp72theoretical.
   1.223 +- \ref Preflow Goldberg-Tarjan's preflow push-relabel algorithm
   1.224 +  \ref goldberg88newapproach.
   1.225 +- \ref DinitzSleatorTarjan Dinitz's blocking flow algorithm with dynamic trees
   1.226 +  \ref dinic70algorithm, \ref sleator83dynamic.
   1.227 +- \ref GoldbergTarjan !Preflow push-relabel algorithm with dynamic trees
   1.228 +  \ref goldberg88newapproach, \ref sleator83dynamic.
   1.229  
   1.230 -In most cases the \ref Preflow "Preflow" algorithm provides the
   1.231 +In most cases the \ref Preflow algorithm provides the
   1.232  fastest method for computing a maximum flow. All implementations
   1.233 -provides functions to also query the minimum cut, which is the dual
   1.234 -problem of the maximum flow.
   1.235 +also provide functions to query the minimum cut, which is the dual
   1.236 +problem of maximum flow.
   1.237 +
   1.238 +\ref Circulation is a preflow push-relabel algorithm implemented directly 
   1.239 +for finding feasible circulations, which is a somewhat different problem,
   1.240 +but it is strongly related to maximum flow.
   1.241 +For more information, see \ref Circulation.
   1.242  */
   1.243  
   1.244  /**
   1.245 -@defgroup min_cost_flow Minimum Cost Flow Algorithms
   1.246 +@defgroup min_cost_flow_algs Minimum Cost Flow Algorithms
   1.247  @ingroup algs
   1.248  
   1.249  \brief Algorithms for finding minimum cost flows and circulations.
   1.250  
   1.251 -This group describes the algorithms for finding minimum cost flows and
   1.252 -circulations.
   1.253 +This group contains the algorithms for finding minimum cost flows and
   1.254 +circulations \ref amo93networkflows. For more information about this
   1.255 +problem and its dual solution, see \ref min_cost_flow
   1.256 +"Minimum Cost Flow Problem".
   1.257  
   1.258 -The \e minimum \e cost \e flow \e problem is to find a feasible flow of
   1.259 -minimum total cost from a set of supply nodes to a set of demand nodes
   1.260 -in a network with capacity constraints and arc costs.
   1.261 -Formally, let \f$G=(V,A)\f$ be a digraph,
   1.262 -\f$lower, upper: A\rightarrow\mathbf{Z}^+_0\f$ denote the lower and
   1.263 -upper bounds for the flow values on the arcs,
   1.264 -\f$cost: A\rightarrow\mathbf{Z}^+_0\f$ denotes the cost per unit flow
   1.265 -on the arcs, and
   1.266 -\f$supply: V\rightarrow\mathbf{Z}\f$ denotes the supply/demand values
   1.267 -of the nodes.
   1.268 -A minimum cost flow is an \f$f:A\rightarrow\mathbf{R}^+_0\f$ solution of
   1.269 -the following optimization problem.
   1.270 +LEMON contains several algorithms for this problem.
   1.271 + - \ref NetworkSimplex Primal Network Simplex algorithm with various
   1.272 +   pivot strategies \ref dantzig63linearprog, \ref kellyoneill91netsimplex.
   1.273 + - \ref CostScaling Push-Relabel and Augment-Relabel algorithms based on
   1.274 +   cost scaling \ref goldberg90approximation, \ref goldberg97efficient,
   1.275 +   \ref bunnagel98efficient.
   1.276 + - \ref CapacityScaling Successive Shortest %Path algorithm with optional
   1.277 +   capacity scaling \ref edmondskarp72theoretical.
   1.278 + - \ref CancelAndTighten The Cancel and Tighten algorithm
   1.279 +   \ref goldberg89cyclecanceling.
   1.280 + - \ref CycleCanceling Cycle-Canceling algorithms
   1.281 +   \ref klein67primal, \ref goldberg89cyclecanceling.
   1.282  
   1.283 -\f[ \min\sum_{a\in A} f(a) cost(a) \f]
   1.284 -\f[ \sum_{a\in\delta_{out}(v)} f(a) - \sum_{a\in\delta_{in}(v)} f(a) =
   1.285 -    supply(v) \qquad \forall v\in V \f]
   1.286 -\f[ lower(a) \leq f(a) \leq upper(a) \qquad \forall a\in A \f]
   1.287 -
   1.288 -LEMON contains several algorithms for solving minimum cost flow problems:
   1.289 - - \ref CycleCanceling Cycle-canceling algorithms.
   1.290 - - \ref CapacityScaling Successive shortest path algorithm with optional
   1.291 -   capacity scaling.
   1.292 - - \ref CostScaling Push-relabel and augment-relabel algorithms based on
   1.293 -   cost scaling.
   1.294 - - \ref NetworkSimplex Primal network simplex algorithm with various
   1.295 -   pivot strategies.
   1.296 +In general NetworkSimplex is the most efficient implementation,
   1.297 +but in special cases other algorithms could be faster.
   1.298 +For example, if the total supply and/or capacities are rather small,
   1.299 +CapacityScaling is usually the fastest algorithm (without effective scaling).
   1.300  */
   1.301  
   1.302  /**
   1.303 @@ -382,7 +428,7 @@
   1.304  
   1.305  \brief Algorithms for finding minimum cut in graphs.
   1.306  
   1.307 -This group describes the algorithms for finding minimum cut in graphs.
   1.308 +This group contains the algorithms for finding minimum cut in graphs.
   1.309  
   1.310  The \e minimum \e cut \e problem is to find a non-empty and non-complete
   1.311  \f$X\f$ subset of the nodes with minimum overall capacity on
   1.312 @@ -391,7 +437,7 @@
   1.313  cut is the \f$X\f$ solution of the next optimization problem:
   1.314  
   1.315  \f[ \min_{X \subset V, X\not\in \{\emptyset, V\}}
   1.316 -    \sum_{uv\in A, u\in X, v\not\in X}cap(uv) \f]
   1.317 +    \sum_{uv\in A: u\in X, v\not\in X}cap(uv) \f]
   1.318  
   1.319  LEMON contains several algorithms related to minimum cut problems:
   1.320  
   1.321 @@ -399,7 +445,7 @@
   1.322    in directed graphs.
   1.323  - \ref NagamochiIbaraki "Nagamochi-Ibaraki algorithm" for
   1.324    calculating minimum cut in undirected graphs.
   1.325 -- \ref GomoryHuTree "Gomory-Hu tree computation" for calculating
   1.326 +- \ref GomoryHu "Gomory-Hu tree computation" for calculating
   1.327    all-pairs minimum cut in undirected graphs.
   1.328  
   1.329  If you want to find minimum cut just between two distinict nodes,
   1.330 @@ -407,27 +453,40 @@
   1.331  */
   1.332  
   1.333  /**
   1.334 -@defgroup graph_prop Connectivity and Other Graph Properties
   1.335 +@defgroup min_mean_cycle Minimum Mean Cycle Algorithms
   1.336  @ingroup algs
   1.337 -\brief Algorithms for discovering the graph properties
   1.338 +\brief Algorithms for finding minimum mean cycles.
   1.339  
   1.340 -This group describes the algorithms for discovering the graph properties
   1.341 -like connectivity, bipartiteness, euler property, simplicity etc.
   1.342 +This group contains the algorithms for finding minimum mean cycles
   1.343 +\ref clrs01algorithms, \ref amo93networkflows.
   1.344  
   1.345 -\image html edge_biconnected_components.png
   1.346 -\image latex edge_biconnected_components.eps "bi-edge-connected components" width=\textwidth
   1.347 -*/
   1.348 +The \e minimum \e mean \e cycle \e problem is to find a directed cycle
   1.349 +of minimum mean length (cost) in a digraph.
   1.350 +The mean length of a cycle is the average length of its arcs, i.e. the
   1.351 +ratio between the total length of the cycle and the number of arcs on it.
   1.352  
   1.353 -/**
   1.354 -@defgroup planar Planarity Embedding and Drawing
   1.355 -@ingroup algs
   1.356 -\brief Algorithms for planarity checking, embedding and drawing
   1.357 +This problem has an important connection to \e conservative \e length
   1.358 +\e functions, too. A length function on the arcs of a digraph is called
   1.359 +conservative if and only if there is no directed cycle of negative total
   1.360 +length. For an arbitrary length function, the negative of the minimum
   1.361 +cycle mean is the smallest \f$\epsilon\f$ value so that increasing the
   1.362 +arc lengths uniformly by \f$\epsilon\f$ results in a conservative length
   1.363 +function.
   1.364  
   1.365 -This group describes the algorithms for planarity checking,
   1.366 -embedding and drawing.
   1.367 +LEMON contains three algorithms for solving the minimum mean cycle problem:
   1.368 +- \ref Karp "Karp"'s original algorithm \ref amo93networkflows,
   1.369 +  \ref dasdan98minmeancycle.
   1.370 +- \ref HartmannOrlin "Hartmann-Orlin"'s algorithm, which is an improved
   1.371 +  version of Karp's algorithm \ref dasdan98minmeancycle.
   1.372 +- \ref Howard "Howard"'s policy iteration algorithm
   1.373 +  \ref dasdan98minmeancycle.
   1.374  
   1.375 -\image html planar.png
   1.376 -\image latex planar.eps "Plane graph" width=\textwidth
   1.377 +In practice, the Howard algorithm proved to be by far the most efficient
   1.378 +one, though the best known theoretical bound on its running time is
   1.379 +exponential.
   1.380 +Both Karp and HartmannOrlin algorithms run in time O(ne) and use space
   1.381 +O(n<sup>2</sup>+e), but the latter one is typically faster due to the
   1.382 +applied early termination scheme.
   1.383  */
   1.384  
   1.385  /**
   1.386 @@ -435,9 +494,10 @@
   1.387  @ingroup algs
   1.388  \brief Algorithms for finding matchings in graphs and bipartite graphs.
   1.389  
   1.390 -This group contains algorithm objects and functions to calculate
   1.391 +This group contains the algorithms for calculating
   1.392  matchings in graphs and bipartite graphs. The general matching problem is
   1.393 -finding a subset of the arcs which does not shares common endpoints.
   1.394 +finding a subset of the edges for which each node has at most one incident
   1.395 +edge.
   1.396  
   1.397  There are several different algorithms for calculate matchings in
   1.398  graphs.  The matching problems in bipartite graphs are generally
   1.399 @@ -470,12 +530,36 @@
   1.400  */
   1.401  
   1.402  /**
   1.403 -@defgroup spantree Minimum Spanning Tree Algorithms
   1.404 +@defgroup graph_properties Connectivity and Other Graph Properties
   1.405  @ingroup algs
   1.406 -\brief Algorithms for finding a minimum cost spanning tree in a graph.
   1.407 +\brief Algorithms for discovering the graph properties
   1.408  
   1.409 -This group describes the algorithms for finding a minimum cost spanning
   1.410 -tree in a graph.
   1.411 +This group contains the algorithms for discovering the graph properties
   1.412 +like connectivity, bipartiteness, euler property, simplicity etc.
   1.413 +
   1.414 +\image html connected_components.png
   1.415 +\image latex connected_components.eps "Connected components" width=\textwidth
   1.416 +*/
   1.417 +
   1.418 +/**
   1.419 +@defgroup planar Planarity Embedding and Drawing
   1.420 +@ingroup algs
   1.421 +\brief Algorithms for planarity checking, embedding and drawing
   1.422 +
   1.423 +This group contains the algorithms for planarity checking,
   1.424 +embedding and drawing.
   1.425 +
   1.426 +\image html planar.png
   1.427 +\image latex planar.eps "Plane graph" width=\textwidth
   1.428 +*/
   1.429 +
   1.430 +/**
   1.431 +@defgroup approx Approximation Algorithms
   1.432 +@ingroup algs
   1.433 +\brief Approximation algorithms.
   1.434 +
   1.435 +This group contains the approximation and heuristic algorithms
   1.436 +implemented in LEMON.
   1.437  */
   1.438  
   1.439  /**
   1.440 @@ -483,36 +567,30 @@
   1.441  @ingroup algs
   1.442  \brief Auxiliary algorithms implemented in LEMON.
   1.443  
   1.444 -This group describes some algorithms implemented in LEMON
   1.445 +This group contains some algorithms implemented in LEMON
   1.446  in order to make it easier to implement complex algorithms.
   1.447  */
   1.448  
   1.449  /**
   1.450 -@defgroup approx Approximation Algorithms
   1.451 -@ingroup algs
   1.452 -\brief Approximation algorithms.
   1.453 +@defgroup gen_opt_group General Optimization Tools
   1.454 +\brief This group contains some general optimization frameworks
   1.455 +implemented in LEMON.
   1.456  
   1.457 -This group describes the approximation and heuristic algorithms
   1.458 +This group contains some general optimization frameworks
   1.459  implemented in LEMON.
   1.460  */
   1.461  
   1.462  /**
   1.463 -@defgroup gen_opt_group General Optimization Tools
   1.464 -\brief This group describes some general optimization frameworks
   1.465 -implemented in LEMON.
   1.466 +@defgroup lp_group LP and MIP Solvers
   1.467 +@ingroup gen_opt_group
   1.468 +\brief LP and MIP solver interfaces for LEMON.
   1.469  
   1.470 -This group describes some general optimization frameworks
   1.471 -implemented in LEMON.
   1.472 -*/
   1.473 +This group contains LP and MIP solver interfaces for LEMON.
   1.474 +Various LP solvers could be used in the same manner with this
   1.475 +high-level interface.
   1.476  
   1.477 -/**
   1.478 -@defgroup lp_group Lp and Mip Solvers
   1.479 -@ingroup gen_opt_group
   1.480 -\brief Lp and Mip solver interfaces for LEMON.
   1.481 -
   1.482 -This group describes Lp and Mip solver interfaces for LEMON. The
   1.483 -various LP solvers could be used in the same manner with this
   1.484 -interface.
   1.485 +The currently supported solvers are \ref glpk, \ref clp, \ref cbc,
   1.486 +\ref cplex, \ref soplex.
   1.487  */
   1.488  
   1.489  /**
   1.490 @@ -529,7 +607,7 @@
   1.491  @ingroup gen_opt_group
   1.492  \brief Metaheuristics for LEMON library.
   1.493  
   1.494 -This group describes some metaheuristic optimization tools.
   1.495 +This group contains some metaheuristic optimization tools.
   1.496  */
   1.497  
   1.498  /**
   1.499 @@ -544,7 +622,7 @@
   1.500  @ingroup utils
   1.501  \brief Simple basic graph utilities.
   1.502  
   1.503 -This group describes some simple basic graph utilities.
   1.504 +This group contains some simple basic graph utilities.
   1.505  */
   1.506  
   1.507  /**
   1.508 @@ -552,7 +630,7 @@
   1.509  @ingroup utils
   1.510  \brief Tools for development, debugging and testing.
   1.511  
   1.512 -This group describes several useful tools for development,
   1.513 +This group contains several useful tools for development,
   1.514  debugging and testing.
   1.515  */
   1.516  
   1.517 @@ -561,7 +639,7 @@
   1.518  @ingroup misc
   1.519  \brief Simple tools for measuring the performance of algorithms.
   1.520  
   1.521 -This group describes simple tools for measuring the performance
   1.522 +This group contains simple tools for measuring the performance
   1.523  of algorithms.
   1.524  */
   1.525  
   1.526 @@ -570,14 +648,14 @@
   1.527  @ingroup utils
   1.528  \brief Exceptions defined in LEMON.
   1.529  
   1.530 -This group describes the exceptions defined in LEMON.
   1.531 +This group contains the exceptions defined in LEMON.
   1.532  */
   1.533  
   1.534  /**
   1.535  @defgroup io_group Input-Output
   1.536  \brief Graph Input-Output methods
   1.537  
   1.538 -This group describes the tools for importing and exporting graphs
   1.539 +This group contains the tools for importing and exporting graphs
   1.540  and graph related data. Now it supports the \ref lgf-format
   1.541  "LEMON Graph Format", the \c DIMACS format and the encapsulated
   1.542  postscript (EPS) format.
   1.543 @@ -588,7 +666,7 @@
   1.544  @ingroup io_group
   1.545  \brief Reading and writing LEMON Graph Format.
   1.546  
   1.547 -This group describes methods for reading and writing
   1.548 +This group contains methods for reading and writing
   1.549  \ref lgf-format "LEMON Graph Format".
   1.550  */
   1.551  
   1.552 @@ -597,12 +675,12 @@
   1.553  @ingroup io_group
   1.554  \brief General \c EPS drawer and graph exporter
   1.555  
   1.556 -This group describes general \c EPS drawing methods and special
   1.557 +This group contains general \c EPS drawing methods and special
   1.558  graph exporting tools.
   1.559  */
   1.560  
   1.561  /**
   1.562 -@defgroup dimacs_group DIMACS format
   1.563 +@defgroup dimacs_group DIMACS Format
   1.564  @ingroup io_group
   1.565  \brief Read and write files in DIMACS format
   1.566  
   1.567 @@ -621,7 +699,7 @@
   1.568  @defgroup concept Concepts
   1.569  \brief Skeleton classes and concept checking classes
   1.570  
   1.571 -This group describes the data/algorithm skeletons and concept checking
   1.572 +This group contains the data/algorithm skeletons and concept checking
   1.573  classes implemented in LEMON.
   1.574  
   1.575  The purpose of the classes in this group is fourfold.
   1.576 @@ -651,8 +729,8 @@
   1.577  @ingroup concept
   1.578  \brief Skeleton and concept checking classes for graph structures
   1.579  
   1.580 -This group describes the skeletons and concept checking classes of LEMON's
   1.581 -graph structures and helper classes used to implement these.
   1.582 +This group contains the skeletons and concept checking classes of
   1.583 +graph structures.
   1.584  */
   1.585  
   1.586  /**
   1.587 @@ -660,19 +738,7 @@
   1.588  @ingroup concept
   1.589  \brief Skeleton and concept checking classes for maps
   1.590  
   1.591 -This group describes the skeletons and concept checking classes of maps.
   1.592 -*/
   1.593 -
   1.594 -/**
   1.595 -\anchor demoprograms
   1.596 -
   1.597 -@defgroup demos Demo Programs
   1.598 -
   1.599 -Some demo programs are listed here. Their full source codes can be found in
   1.600 -the \c demo subdirectory of the source tree.
   1.601 -
   1.602 -It order to compile them, use <tt>--enable-demo</tt> configure option when
   1.603 -build the library.
   1.604 +This group contains the skeletons and concept checking classes of maps.
   1.605  */
   1.606  
   1.607  /**
   1.608 @@ -684,4 +750,16 @@
   1.609  them, as well.
   1.610  */
   1.611  
   1.612 +/**
   1.613 +\anchor demoprograms
   1.614 +
   1.615 +@defgroup demos Demo Programs
   1.616 +
   1.617 +Some demo programs are listed here. Their full source codes can be found in
   1.618 +the \c demo subdirectory of the source tree.
   1.619 +
   1.620 +In order to compile them, use the <tt>make demo</tt> or the
   1.621 +<tt>make check</tt> commands.
   1.622 +*/
   1.623 +
   1.624  }