COIN-OR::LEMON - Graph Library

Changeset 457:8fbd472b1a22 in lemon-0.x


Ignore:
Timestamp:
04/28/04 14:33:05 (20 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@605
Message:

\author's added

File:
1 edited

Legend:

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

    r438 r457  
    22#ifndef HUGO_GRAPH_WRAPPER_H
    33#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
    412
    513#include <invalid.h>
     
    7381
    7482  ///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 
    7787  template<typename Graph>
    7888  class GraphWrapper {
     
    212222
    213223  /// A graph wrapper which reverses the orientation of the edges.
     224  ///
     225  ///\author Marton Makai
    214226  template<typename Graph>
    215227  class RevGraphWrapper : public GraphWrapper<Graph> {
     
    286298  /// the lazy dog nodes or edges if the values for them are false
    287299  /// in the bool maps.
     300  ///
     301  ///\author Marton Makai
    288302  template<typename Graph, typename NodeFilterMap,
    289303           typename EdgeFilterMap>
     
    816830
    817831  /// ErasingFirstGraphWrapper for blocking flows.
     832  ///
     833  ///\author Marton Makai
    818834  template<typename Graph, typename FirstOutEdgesMap>
    819835  class ErasingFirstGraphWrapper : public GraphWrapper<Graph> {
     
    924940  /// color classes S and T. \c _graph is to be referred to an undirected
    925941  /// graph or a directed graph with edges oriented from S to T.
     942  ///
     943  ///\author Marton Makai
    926944  template<typename Graph>
    927945  class BipartiteGraphWrapper : public GraphWrapper<Graph> {
     
    10961114  /// It eats a bipartite graph, oriented from S to T.
    10971115  /// Such one can be made e.g. by the above wrapper.
     1116  ///
     1117  ///\author Marton Makai
    10981118  template<typename Graph>
    10991119  class stGraphWrapper : public GraphWrapper<Graph> {
Note: See TracChangeset for help on using the changeset viewer.