lemon/preflow.h
changeset 953 d8ea85825e02
parent 889 a7e93de12cbd
child 956 141f9c0db4a3
equal deleted inserted replaced
20:ec88861a9a5f 21:744df2ddfae9
   117   /// capacities (e.g. the maximum value of \c CAP::Value).
   117   /// capacities (e.g. the maximum value of \c CAP::Value).
   118   ///
   118   ///
   119   /// \tparam GR The type of the digraph the algorithm runs on.
   119   /// \tparam GR The type of the digraph the algorithm runs on.
   120   /// \tparam CAP The type of the capacity map. The default map
   120   /// \tparam CAP The type of the capacity map. The default map
   121   /// type is \ref concepts::Digraph::ArcMap "GR::ArcMap<int>".
   121   /// type is \ref concepts::Digraph::ArcMap "GR::ArcMap<int>".
       
   122   /// \tparam TR The traits class that defines various types used by the
       
   123   /// algorithm. By default, it is \ref PreflowDefaultTraits
       
   124   /// "PreflowDefaultTraits<GR, CAP>".
       
   125   /// In most cases, this parameter should not be set directly,
       
   126   /// consider to use the named template parameters instead.
   122 #ifdef DOXYGEN
   127 #ifdef DOXYGEN
   123   template <typename GR, typename CAP, typename TR>
   128   template <typename GR, typename CAP, typename TR>
   124 #else
   129 #else
   125   template <typename GR,
   130   template <typename GR,
   126             typename CAP = typename GR::template ArcMap<int>,
   131             typename CAP = typename GR::template ArcMap<int>,