Changeset 682:1ea8162ce638 in lemon-0.x for src/work
- Timestamp:
- 06/14/04 11:47:54 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@930
- Location:
- src/work
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
src/work/Doxyfile
r637 r682 199 199 # will be included in the documentation. 200 200 201 EXTRACT_PRIVATE = NO201 EXTRACT_PRIVATE = YES 202 202 203 203 # If the EXTRACT_STATIC tag is set to YES all static members of a file … … 392 392 # with spaces. 393 393 394 INPUT = ../hugo \ 394 INPUT = ../../doc/mainpage.dox \ 395 ../../doc/graphs.dox \ 396 ../../doc/maps.dox ../../doc/coding_style.dox \ 397 ../../doc/groups.dox \ 398 ../hugo \ 395 399 ../hugo/skeletons \ 396 400 ../test/test_tools.h \ 397 401 klao/path.h \ 402 klao/debug.h \ 398 403 jacint/max_flow.h \ 399 404 jacint/max_matching.h \ … … 402 407 jacint/graph_gen.h \ 403 408 marci/max_bipartite_matching.h \ 404 marci/bipartite_graph_wrapper.h 409 marci/bipartite_graph_wrapper.h \ 410 deba/map_registry.h \ 411 deba/map_defines.h \ 412 deba/array_map_factory.h \ 413 johanna/kruskal.h \ 414 405 415 406 416 # If the value of the INPUT tag contains directories, you can use the -
src/work/jacint/max_matching.h
r586 r682 26 26 ///\ref writeNMapNode, \ref writeNMapEdge or \ref writeEMapBool 27 27 ///depending on the preferred container. 28 28 /// 29 29 ///The dual side of a mathcing is a map of the nodes to 30 30 ///MaxMatching::pos_enum, having values D, A and C showing the … … 35 35 ///writePos after running the algorithm. Before subsequent runs, 36 36 ///the function \ref resetPos() must be called. 37 37 /// 38 38 ///\param Graph The undirected graph type the algorithm runs on. 39 39 /// 40 40 ///\author Jacint Szabo 41 41 template <typename Graph> … … 240 240 ///After calling any run methods of the class, and before calling 241 241 ///\ref resetPos(), it writes the Gallai-Edmonds canonical 242 ///decomposition of the graph. \c map must be a node map of \ref pos_enum 's. 242 ///decomposition of the graph. \c map must be a node map 243 ///of \ref pos_enum 's. 243 244 template<typename NMapEnum> 244 245 void writePos (NMapEnum& map) const { -
src/work/johanna/kruskal.h
r394 r682 6 6 #include <unionfind.h> 7 7 #include <for_each_macros.h> 8 9 ///\file 10 ///\brief Kruskal's algorithm to compute a minimum cost tree 8 11 9 12 namespace hugo { -
src/work/klao/path.h
r619 r682 228 228 * operation and until the commit()) the original Path is in a 229 229 * "transitional" state (operations ot it have undefined result). But 230 * in the case of DirPath the original path is unchanged until the230 * in the case of DirPath the original path remains unchanged until the 231 231 * commit. However we don't recomend that you use this feature. 232 232 */
Note: See TracChangeset
for help on using the changeset viewer.