COIN-OR::LEMON - Graph Library

Ignore:
Timestamp:
04/26/04 11:54:24 (20 years ago)
Author:
marci
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@542
Message:

stGraphWrapper is almost working

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/work/marci/leda_graph_wrapper.h

    r198 r409  
    2323  // @{
    2424
    25   /// An empty graph class.
     25  /// A graph wrapperstructure for wrapping LEDA graphs in HUGO.
    2626 
     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.
    2730  /// This class provides all the common features of a grapf structure,
    2831  /// however completely without implementations or real data structures
     
    195198    }
    196199
    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//     }
    210213
    211214    ///Gives back the head node of an edge.
Note: See TracChangeset for help on using the changeset viewer.