| [814] | 1 |  | 
|---|
| [678] | 2 | /** | 
|---|
|  | 3 | @defgroup datas Data Structures | 
|---|
| [921] | 4 | This group describes the several graph structures implemented in LEMON. | 
|---|
| [678] | 5 | */ | 
|---|
| [430] | 6 |  | 
|---|
| [678] | 7 | /** | 
|---|
|  | 8 | @defgroup graphs Graph Structures | 
|---|
|  | 9 | @ingroup datas | 
|---|
| [921] | 10 | \brief Graph structures implemented in LEMON. | 
|---|
| [430] | 11 |  | 
|---|
| [1172] | 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. | 
|---|
| [430] | 16 |  | 
|---|
| [1172] | 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 | 
|---|
| [1401] | 34 | \ref graph_adaptors "graph adaptors". Adaptors cannot be used alone but only | 
|---|
| [1172] | 35 | in conjunction with other graph representation. | 
|---|
| [430] | 36 |  | 
|---|
| [678] | 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 | 
|---|
| [1172] | 39 | with any graph structures. | 
|---|
| [678] | 40 | */ | 
|---|
| [430] | 41 |  | 
|---|
| [678] | 42 | /** | 
|---|
| [1043] | 43 | @defgroup maps Maps | 
|---|
|  | 44 | @ingroup datas | 
|---|
|  | 45 | \brief Some special purpose map to make life easier. | 
|---|
|  | 46 |  | 
|---|
|  | 47 | LEMON provides several special maps that e.g. combine | 
|---|
|  | 48 | new maps from existing ones. | 
|---|
|  | 49 | */ | 
|---|
|  | 50 |  | 
|---|
| [1402] | 51 |  | 
|---|
|  | 52 | /** | 
|---|
|  | 53 | @defgroup graph_maps Graph Maps | 
|---|
|  | 54 | @ingroup maps | 
|---|
|  | 55 | \brief Special Graph-Related Maps. | 
|---|
|  | 56 |  | 
|---|
|  | 57 | These maps are specifically designed to assign values to the nodes and edges of | 
|---|
|  | 58 | graphs. | 
|---|
|  | 59 | */ | 
|---|
|  | 60 |  | 
|---|
|  | 61 |  | 
|---|
|  | 62 | /** | 
|---|
|  | 63 | \defgroup map_adaptors Map Adaptors | 
|---|
|  | 64 | \ingroup maps | 
|---|
|  | 65 | \brief Tools to create new maps from existing ones | 
|---|
|  | 66 |  | 
|---|
|  | 67 | Map adaptors are used to create "implicit" maps from other maps. | 
|---|
|  | 68 |  | 
|---|
| [1536] | 69 | Most of them are \ref lemon::concept::ReadMap "ReadMap"s. They can | 
|---|
| [1402] | 70 | make arithmetic oprerations between one or two maps (negation, scalig, | 
|---|
|  | 71 | addition, multiplication etc.) or e.g. convert a map to another one | 
|---|
|  | 72 | of different Value type. | 
|---|
|  | 73 | */ | 
|---|
|  | 74 |  | 
|---|
| [1043] | 75 | /** | 
|---|
| [678] | 76 | @defgroup auxdat Auxiliary Data Structures | 
|---|
|  | 77 | @ingroup datas | 
|---|
| [921] | 78 | \brief Some data structures implemented in LEMON. | 
|---|
| [406] | 79 |  | 
|---|
| [921] | 80 | This group describes the data structures implemented in LEMON in | 
|---|
| [678] | 81 | order to make it easier to implement combinatorial algorithms. | 
|---|
|  | 82 | */ | 
|---|
| [406] | 83 |  | 
|---|
| [678] | 84 | /** | 
|---|
| [785] | 85 | @defgroup graphmapfactory Tools to Make It Easier to Make Graph Maps | 
|---|
|  | 86 | @ingroup auxdat | 
|---|
|  | 87 | \brief Tools to Make It Easier to Make Graph Maps. | 
|---|
|  | 88 |  | 
|---|
|  | 89 | This group describes the tools that makes it easier to make graph maps that | 
|---|
|  | 90 | dynamically update with the graph changes. | 
|---|
|  | 91 | */ | 
|---|
|  | 92 |  | 
|---|
|  | 93 | /** | 
|---|
| [678] | 94 | @defgroup galgs Graph Algorithms | 
|---|
|  | 95 | \brief This group describes the several graph algorithms | 
|---|
| [921] | 96 | implemented in LEMON. | 
|---|
| [947] | 97 |  | 
|---|
|  | 98 | This group describes the several graph algorithms | 
|---|
|  | 99 | implemented in LEMON. | 
|---|
|  | 100 | */ | 
|---|
|  | 101 |  | 
|---|
|  | 102 | /** | 
|---|
|  | 103 | @defgroup gutils General Graph Utilities | 
|---|
|  | 104 | \brief This group describes some simple general graph utilities. | 
|---|
|  | 105 | @ingroup galgs | 
|---|
|  | 106 |  | 
|---|
|  | 107 | This group describes some simple general graph utilities. | 
|---|
| [678] | 108 | */ | 
|---|
|  | 109 |  | 
|---|
|  | 110 | /** | 
|---|
| [1329] | 111 | @defgroup gen_opt_group General Optimization Tools | 
|---|
|  | 112 | \brief This group describes some general optimization frameworks | 
|---|
|  | 113 | implemented in LEMON. | 
|---|
|  | 114 |  | 
|---|
|  | 115 | \brief This group describes some general optimization frameworks | 
|---|
|  | 116 | implemented in LEMON. | 
|---|
|  | 117 |  | 
|---|
|  | 118 | */ | 
|---|
|  | 119 |  | 
|---|
|  | 120 | /** | 
|---|
| [758] | 121 | @defgroup flowalgs Path and Flow Algorithms | 
|---|
| [678] | 122 | @ingroup galgs | 
|---|
| [758] | 123 | \brief This group describes the algorithms | 
|---|
|  | 124 | for finding paths and flows in graphs. | 
|---|
| [678] | 125 | */ | 
|---|
|  | 126 |  | 
|---|
|  | 127 | /** | 
|---|
| [1750] | 128 | @defgroup topology Topology related algorithms | 
|---|
|  | 129 | @ingroup galgs | 
|---|
|  | 130 | \brief This group describes the algorithms | 
|---|
|  | 131 | for discover the topology of the graphs. | 
|---|
|  | 132 | */ | 
|---|
|  | 133 |  | 
|---|
|  | 134 | /** | 
|---|
| [1151] | 135 | @defgroup exceptions Exceptions | 
|---|
|  | 136 | This group contains the exceptions thrown by LEMON library | 
|---|
|  | 137 | */ | 
|---|
|  | 138 |  | 
|---|
|  | 139 | /** | 
|---|
| [678] | 140 | @defgroup misc Miscellaneous Tools | 
|---|
|  | 141 | Here you can find several useful tools for development, | 
|---|
|  | 142 | debugging and testing. | 
|---|
|  | 143 | */ | 
|---|
|  | 144 |  | 
|---|
|  | 145 | /** | 
|---|
| [1287] | 146 | @defgroup io_group Input Output | 
|---|
|  | 147 | Here you can find tools for imporing and exporting graphs and graph related | 
|---|
|  | 148 | data | 
|---|
|  | 149 | */ | 
|---|
|  | 150 |  | 
|---|
|  | 151 | /** | 
|---|
| [1030] | 152 | @defgroup concept Concepts | 
|---|
| [959] | 153 | \brief Skeleton classes and concept checking classes | 
|---|
| [794] | 154 |  | 
|---|
| [959] | 155 | This group describes the data/algorithm skeletons and concept checking | 
|---|
| [1030] | 156 | classes implemented in LEMON. | 
|---|
|  | 157 |  | 
|---|
|  | 158 | One aim of these classes is to make it easier to check if a certain | 
|---|
|  | 159 | class or template function is correctly implemented. | 
|---|
|  | 160 |  | 
|---|
|  | 161 | The other (sometimes even more important) aim is to document the concepts. | 
|---|
|  | 162 |  | 
|---|
| [794] | 163 | */ | 
|---|
|  | 164 |  | 
|---|
| [1030] | 165 | /** | 
|---|
|  | 166 | @defgroup graph_concepts Graph Structure Concepts | 
|---|
|  | 167 | @ingroup concept | 
|---|
|  | 168 | \brief Skeleton and concept checking classes for graph structures | 
|---|
|  | 169 |  | 
|---|
|  | 170 | This group contains the skeletons and concept checking classes of LEMON's | 
|---|
|  | 171 | graph structures and helper classes used to implement these. | 
|---|
|  | 172 | */ | 
|---|
| [794] | 173 |  | 
|---|
| [1587] | 174 | /* --- Unused group | 
|---|
| [678] | 175 | @defgroup experimental Experimental Structures and Algorithms | 
|---|
|  | 176 | This group contains some Experimental structures and algorithms. | 
|---|
|  | 177 | The stuff here is subject to change. | 
|---|
|  | 178 | */ | 
|---|
| [1151] | 179 |  | 
|---|
| [1558] | 180 | /** | 
|---|
| [1582] | 181 | \anchor demoprograms | 
|---|
|  | 182 |  | 
|---|
| [1558] | 183 | @defgroup demos Demo programs | 
|---|
|  | 184 |  | 
|---|
| [1559] | 185 | Some demo programs are listed here. Their full source codes can be found in | 
|---|
| [1558] | 186 | the \c demo subdirectory of the source tree. | 
|---|
|  | 187 |  | 
|---|
| [1639] | 188 | The standard compilation procedure (<tt>./configure;make</tt>) will compile | 
|---|
|  | 189 | them, as well. | 
|---|
| [1558] | 190 |  | 
|---|
|  | 191 | */ | 
|---|
|  | 192 |  | 
|---|