lemon/capacity_scaling.h
changeset 985 eb12ad2789fc
parent 922 9312d6c89d02
child 1004 d59484d5fc1f
equal deleted inserted replaced
17:197e53c95700 18:cea0b59ede18
    85   /// "CapacityScalingDefaultTraits<GR, V, C>".
    85   /// "CapacityScalingDefaultTraits<GR, V, C>".
    86   /// In most cases, this parameter should not be set directly,
    86   /// In most cases, this parameter should not be set directly,
    87   /// consider to use the named template parameters instead.
    87   /// consider to use the named template parameters instead.
    88   ///
    88   ///
    89   /// \warning Both \c V and \c C must be signed number types.
    89   /// \warning Both \c V and \c C must be signed number types.
    90   /// \warning All input data (capacities, supply values, and costs) must
    90   /// \warning Capacity bounds and supply values must be integer, but
    91   /// be integer.
    91   /// arc costs can be arbitrary real numbers.
    92   /// \warning This algorithm does not support negative costs for
    92   /// \warning This algorithm does not support negative costs for
    93   /// arcs having infinite upper bound.
    93   /// arcs having infinite upper bound.
    94 #ifdef DOXYGEN
    94 #ifdef DOXYGEN
    95   template <typename GR, typename V, typename C, typename TR>
    95   template <typename GR, typename V, typename C, typename TR>
    96 #else
    96 #else