Changeset 409:7ab7f083760a in lemon-0.x for src/work/marci/leda_graph_wrapper.h
- Timestamp:
- 04/26/04 11:54:24 (21 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@542
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/work/marci/leda_graph_wrapper.h
r198 r409 23 23 // @{ 24 24 25 /// A n empty graph class.25 /// A graph wrapperstructure for wrapping LEDA graphs in HUGO. 26 26 27 /// This graph wrapper class wraps LEDA graph and LEDA parametrized graph 28 /// and then the generic algorithms and wrappers of HUGO can be used 29 /// with LEDA graphs. 27 30 /// This class provides all the common features of a grapf structure, 28 31 /// however completely without implementations or real data structures … … 195 198 } 196 199 197 template< typename It >198 It first() const {199 It e;200 first(e);201 return e;202 }203 204 template< typename It >205 It first(Node v) const {206 It e;207 first(e, v);208 return e;209 }200 // template< typename It > 201 // It first() const { 202 // It e; 203 // first(e); 204 // return e; 205 // } 206 207 // template< typename It > 208 // It first(Node v) const { 209 // It e; 210 // first(e, v); 211 // return e; 212 // } 210 213 211 214 ///Gives back the head node of an edge.
Note: See TracChangeset
for help on using the changeset viewer.