Changeset 457:8fbd472b1a22 in lemon-0.x for src
- Timestamp:
- 04/28/04 14:33:05 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@605
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/work/marci/graph_wrapper.h
r438 r457 2 2 #ifndef HUGO_GRAPH_WRAPPER_H 3 3 #define HUGO_GRAPH_WRAPPER_H 4 5 ///ingroup gwrappers 6 ///\file 7 ///\brief Several graph wrappers. 8 /// 9 ///This file contains several useful graph wrapper functions. 10 /// 11 ///\author Marton Makai 4 12 5 13 #include <invalid.h> … … 73 81 74 82 ///This is the base type for the Graph Wrappers. 75 ///\todo Some more docs... 76 83 ///\todo Some more docs... 84 /// 85 ///\author Marton Makai 86 77 87 template<typename Graph> 78 88 class GraphWrapper { … … 212 222 213 223 /// A graph wrapper which reverses the orientation of the edges. 224 /// 225 ///\author Marton Makai 214 226 template<typename Graph> 215 227 class RevGraphWrapper : public GraphWrapper<Graph> { … … 286 298 /// the lazy dog nodes or edges if the values for them are false 287 299 /// in the bool maps. 300 /// 301 ///\author Marton Makai 288 302 template<typename Graph, typename NodeFilterMap, 289 303 typename EdgeFilterMap> … … 816 830 817 831 /// ErasingFirstGraphWrapper for blocking flows. 832 /// 833 ///\author Marton Makai 818 834 template<typename Graph, typename FirstOutEdgesMap> 819 835 class ErasingFirstGraphWrapper : public GraphWrapper<Graph> { … … 924 940 /// color classes S and T. \c _graph is to be referred to an undirected 925 941 /// graph or a directed graph with edges oriented from S to T. 942 /// 943 ///\author Marton Makai 926 944 template<typename Graph> 927 945 class BipartiteGraphWrapper : public GraphWrapper<Graph> { … … 1096 1114 /// It eats a bipartite graph, oriented from S to T. 1097 1115 /// Such one can be made e.g. by the above wrapper. 1116 /// 1117 ///\author Marton Makai 1098 1118 template<typename Graph> 1099 1119 class stGraphWrapper : public GraphWrapper<Graph> {
Note: See TracChangeset
for help on using the changeset viewer.