COIN-OR::LEMON - Graph Library

Changeset 1946:17eb3eaad9f8 in lemon-0.x for lemon/graph_adaptor.h


Ignore:
Timestamp:
02/02/06 18:43:24 (18 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2521
Message:
  • workaround for a Doxygen 1.4.6 bug
  • other doc fixes
File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/graph_adaptor.h

    r1909 r1946  
    189189  /// suppose that a graph instange \c g of type
    190190  /// \c ListGraph implements \f$G\f$.
    191   /// \code
     191  ///\code
    192192  /// ListGraph g;
    193   /// \endcode
     193  ///\endcode
    194194  /// For each directed edge
    195195  /// \f$e\in A\f$, let \f$\bar e\f$ denote the edge obtained by
     
    200200  /// reversing the orientation of its edges. The following code shows how
    201201  /// such an instance can be constructed.
    202   /// \code
     202  ///\code
    203203  /// RevGraphAdaptor<ListGraph> gw(g);
    204   /// \endcode
     204  ///\endcode
    205205  ///\author Marton Makai
     206
    206207  template<typename _Graph>
    207208  class RevGraphAdaptor :
     
    12791280  /// For blocking flows.
    12801281
    1281   ///\warning Graph adaptors are in even more experimental state than the other
     1282  ///\warning Graph adaptors are in even more
     1283  ///experimental state than the other
    12821284  ///parts of the lib. Use them at you own risk.
    12831285  ///
    1284   /// This graph adaptor is used for on-the-fly
    1285   /// Dinits blocking flow computations.
    1286   /// For each node, an out-edge is stored which is used when the
    1287   /// \code
    1288   /// OutEdgeIt& first(OutEdgeIt&, const Node&)
    1289   /// \endcode
    1290   /// is called.
     1286  ///This graph adaptor is used for on-the-fly
     1287  ///Dinits blocking flow computations.
     1288  ///For each node, an out-edge is stored which is used when the
     1289  ///\code OutEdgeIt& first(OutEdgeIt&, const Node&)\endcode
     1290  ///is called.
    12911291  ///
    1292   /// \author Marton Makai
     1292  ///\author Marton Makai
     1293  ///
    12931294  template <typename _Graph, typename FirstOutEdgesMap>
    12941295  class ErasingFirstGraphAdaptor :
Note: See TracChangeset for help on using the changeset viewer.