doc/groups.dox
author alpar
Thu, 19 Jan 2006 16:56:39 +0000
changeset 1900 b16ca599472f
parent 1847 7cbc12e42482
child 1914 7ef30a71937f
permissions -rw-r--r--
Fix bug #18: bug in LpSolverBase::Col operator!= and ::Row operator!=
     1 
     2 /**
     3 @defgroup datas Data Structures
     4 This group describes the several graph structures implemented in LEMON.
     5 */
     6 
     7 /**
     8 @defgroup graphs Graph Structures
     9 @ingroup datas
    10 \brief Graph structures implemented in LEMON.
    11 
    12 The implementation of combinatorial algorithms heavily relies on 
    13 efficient graph implementations. LEMON offers data structures which are 
    14 planned to be easily used in an experimental phase of implementation studies, 
    15 and thereafter the program code can be made efficient by small modifications. 
    16 
    17 The most efficient implementation of diverse applications require the usage of different physical graph implementations. These differences appear in the size of 
    18 graph we require to handle, memory or time usage limitations or in 
    19 the set of operations through which the graph can be accessed. 
    20 LEMON provides several physical graph structures to meet the 
    21 diverging requirements of the possible users. 
    22 In order to save on running time or on memory usage, some structures may 
    23 fail to provide some graph features like edge or node deletion.
    24 
    25 Alteration of standard containers need a very limited number of 
    26 operations, these together satisfy the everyday requirements. 
    27 In the case of graph strutures, different operations are needed which do 
    28 not alter the physical graph, but gives an other view. If some nodes or 
    29 edges have to be hidden or the reverse oriented graph have to be used, then 
    30 this is the case. It also may happen that in a flow implemenation 
    31 the residual graph can be accessed by an other algorithm, or a node-set 
    32 is to be shrunk for an other algorithm. 
    33 LEMON also provides a variety of graphs for these requirements called 
    34 \ref graph_adaptors "graph adaptors". Adaptors cannot be used alone but only 
    35 in conjunction with other graph representation. 
    36 
    37 You are free to use the graph structure that fit your requirements
    38 the best, most graph algorithms and auxiliary data structures can be used
    39 with any graph structures. 
    40 */
    41 
    42 /**
    43 @defgroup semi_adaptors Semi-Adaptors Classes for Graphs
    44 @ingroup graphs
    45 \brief Graph types between real graphs and graph adaptors.
    46 
    47 Graph types between real graphs and graph adaptors. These classes
    48 wrap graphs to give new functionality as the adaptors do it. But the
    49 other way they are not light-weigth structures as the adaptors.
    50 */
    51 
    52 /**
    53 @defgroup maps Maps 
    54 @ingroup datas
    55 \brief Some special purpose map to make life easier.
    56 
    57 LEMON provides several special maps that e.g. combine
    58 new maps from existing ones.
    59 */
    60 
    61 /**
    62 @defgroup graph_maps Graph Maps 
    63 @ingroup maps
    64 \brief Special Graph-Related Maps.
    65 
    66 These maps are specifically designed to assign values to the nodes and edges of
    67 graphs.
    68 */
    69 
    70 
    71 /**
    72 \defgroup map_adaptors Map Adaptors
    73 \ingroup maps
    74 \brief Tools to create new maps from existing ones
    75 
    76 Map adaptors are used to create "implicit" maps from other maps.
    77 
    78 Most of them are \ref lemon::concept::ReadMap "ReadMap"s. They can
    79 make arithmetic oprerations between one or two maps (negation, scalig,
    80 addition, multiplication etc.) or e.g. convert a map to another one
    81 of different Value type.
    82 */
    83 
    84 /**
    85 @defgroup auxdat Auxiliary Data Structures
    86 @ingroup datas
    87 \brief Some data structures implemented in LEMON.
    88 
    89 This group describes the data structures implemented in LEMON in
    90 order to make it easier to implement combinatorial algorithms.
    91 */
    92 
    93 /**
    94 @defgroup graphmapfactory Tools to Make It Easier to Make Graph Maps
    95 @ingroup auxdat
    96 \brief Tools to Make It Easier to Make Graph Maps.
    97 
    98 This group describes the tools that makes it easier to make graph maps that
    99 dynamically update with the graph changes.
   100 */
   101 
   102 /**
   103 @defgroup galgs Graph Algorithms
   104 \brief This group describes the several graph algorithms
   105 implemented in LEMON.
   106 
   107 This group describes the several graph algorithms
   108 implemented in LEMON.
   109 */
   110 
   111 /**
   112 @defgroup gutils General Graph Utilities
   113 \brief This group describes some simple general graph utilities.
   114 @ingroup galgs
   115 
   116 This group describes some simple general graph utilities.
   117 */
   118 
   119 /**
   120 @defgroup gen_opt_group General Optimization Tools
   121 \brief This group describes some general optimization frameworks
   122 implemented in LEMON.
   123 
   124 \brief This group describes some general optimization frameworks
   125 implemented in LEMON.
   126 
   127 */
   128 
   129 /**
   130 @defgroup flowalgs Path and Flow Algorithms
   131 @ingroup galgs
   132 \brief This group describes the algorithms
   133 for finding paths and flows in graphs.
   134 */
   135 
   136 /**
   137 @defgroup topology Topology related algorithms
   138 @ingroup galgs
   139 \brief This group describes the algorithms
   140 for discover the topology of the graphs.
   141 */
   142 
   143 /**
   144 @defgroup exceptions Exceptions
   145 This group contains the exceptions thrown by LEMON library
   146 */
   147 
   148 /**
   149 @defgroup misc Miscellaneous Tools
   150 Here you can find several useful tools for development,
   151 debugging and testing.
   152 */
   153 
   154 /**
   155 @defgroup timecount Time measuring and Counting
   156 @ingroup misc
   157 Here you can find simple tools for measuring the performance
   158 of algorithms.
   159 */
   160 
   161 /**
   162 @defgroup io_group Input Output
   163 Here you can find tools for imporing and exporting graphs and graph related
   164 data
   165 */
   166 
   167 /**
   168 @defgroup concept Concepts
   169 \brief Skeleton classes and concept checking classes
   170 
   171 This group describes the data/algorithm skeletons and concept checking
   172 classes implemented in LEMON.
   173 
   174 One aim of these classes is to make it easier to check if a certain
   175 class or template function is correctly implemented.
   176 
   177 The other (sometimes even more important) aim is to document the concepts.
   178 
   179 */
   180 
   181 /**
   182 @defgroup graph_concepts Graph Structure Concepts
   183 @ingroup concept
   184 \brief Skeleton and concept checking classes for graph structures
   185 
   186 This group contains the skeletons and concept checking classes of LEMON's
   187 graph structures and helper classes used to implement these.
   188 */
   189 
   190 /* --- Unused group
   191 @defgroup experimental Experimental Structures and Algorithms
   192 This group contains some Experimental structures and algorithms.
   193 The stuff here is subject to change.
   194 */
   195 
   196 /**
   197 \anchor demoprograms
   198 
   199 @defgroup demos Demo programs
   200 
   201 Some demo programs are listed here. Their full source codes can be found in
   202 the \c demo subdirectory of the source tree.
   203 
   204 The standard compilation procedure (<tt>./configure;make</tt>) will compile
   205 them, as well. 
   206 
   207 */
   208