[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 | |
---|
[921] | 12 | LEMON provides several data structures to meet the diverging requirements |
---|
[678] | 13 | of the possible users. |
---|
| 14 | In order to save on running time or on memory usage, some structures may |
---|
| 15 | fail to provide |
---|
| 16 | some graph features like edge or node deletion. |
---|
[430] | 17 | |
---|
[921] | 18 | LEMON also offers special graphs that cannot be used alone but only |
---|
[774] | 19 | in conjunction with other graph representation. The examples for this are |
---|
[921] | 20 | \ref lemon::EdgeSet "EdgeSet", \ref lemon::NodeSet "NodeSet" |
---|
[814] | 21 | and the large variety of \ref gwrappers "graph wrappers". |
---|
[430] | 22 | |
---|
[678] | 23 | You are free to use the graph structure that fit your requirements |
---|
| 24 | the best, most graph algorithms and auxiliary data structures can be used |
---|
| 25 | with any graph structures. |
---|
| 26 | */ |
---|
[430] | 27 | |
---|
[678] | 28 | /** |
---|
| 29 | @defgroup auxdat Auxiliary Data Structures |
---|
| 30 | @ingroup datas |
---|
[921] | 31 | \brief Some data structures implemented in LEMON. |
---|
[406] | 32 | |
---|
[921] | 33 | This group describes the data structures implemented in LEMON in |
---|
[678] | 34 | order to make it easier to implement combinatorial algorithms. |
---|
| 35 | */ |
---|
[406] | 36 | |
---|
[678] | 37 | /** |
---|
[785] | 38 | @defgroup graphmapfactory Tools to Make It Easier to Make Graph Maps |
---|
| 39 | @ingroup auxdat |
---|
| 40 | \brief Tools to Make It Easier to Make Graph Maps. |
---|
| 41 | |
---|
| 42 | This group describes the tools that makes it easier to make graph maps that |
---|
| 43 | dynamically update with the graph changes. |
---|
| 44 | */ |
---|
| 45 | |
---|
| 46 | /** |
---|
[678] | 47 | @defgroup gwrappers Wrapper Classes for Graphs |
---|
| 48 | \brief This group contains several wrapper classes for graphs |
---|
| 49 | @ingroup graphs |
---|
| 50 | */ |
---|
| 51 | |
---|
| 52 | /** |
---|
| 53 | @defgroup galgs Graph Algorithms |
---|
| 54 | \brief This group describes the several graph algorithms |
---|
[921] | 55 | implemented in LEMON. |
---|
[947] | 56 | |
---|
| 57 | This group describes the several graph algorithms |
---|
| 58 | implemented in LEMON. |
---|
| 59 | */ |
---|
| 60 | |
---|
| 61 | /** |
---|
| 62 | @defgroup gutils General Graph Utilities |
---|
| 63 | \brief This group describes some simple general graph utilities. |
---|
| 64 | @ingroup galgs |
---|
| 65 | |
---|
| 66 | This group describes some simple general graph utilities. |
---|
[678] | 67 | */ |
---|
| 68 | |
---|
| 69 | /** |
---|
[758] | 70 | @defgroup flowalgs Path and Flow Algorithms |
---|
[678] | 71 | @ingroup galgs |
---|
[758] | 72 | \brief This group describes the algorithms |
---|
| 73 | for finding paths and flows in graphs. |
---|
[678] | 74 | */ |
---|
| 75 | |
---|
| 76 | /** |
---|
| 77 | @defgroup misc Miscellaneous Tools |
---|
| 78 | Here you can find several useful tools for development, |
---|
| 79 | debugging and testing. |
---|
| 80 | */ |
---|
| 81 | |
---|
| 82 | /** |
---|
[959] | 83 | @defgroup concept Concept |
---|
| 84 | \brief Skeleton classes and concept checking classes |
---|
[794] | 85 | |
---|
[959] | 86 | This group describes the data/algorithm skeletons and concept checking |
---|
| 87 | classes implemented in LEMON. These classes exist in order to make it |
---|
| 88 | easier to check if a certain template class or template function is |
---|
| 89 | correctly implemented. |
---|
[794] | 90 | */ |
---|
| 91 | |
---|
| 92 | |
---|
| 93 | /** |
---|
[678] | 94 | @defgroup experimental Experimental Structures and Algorithms |
---|
| 95 | This group contains some Experimental structures and algorithms. |
---|
| 96 | The stuff here is subject to change. |
---|
| 97 | */ |
---|