lemon/cycle_canceling.h
changeset 921 140c953ad5d1
parent 877 141f9c0db4a3
child 922 9312d6c89d02
equal deleted inserted replaced
8:8e22680054e8 10:616b2a3f93b3
    63   /// \tparam V The number type used for flow amounts, capacity bounds
    63   /// \tparam V The number type used for flow amounts, capacity bounds
    64   /// and supply values in the algorithm. By default, it is \c int.
    64   /// and supply values in the algorithm. By default, it is \c int.
    65   /// \tparam C The number type used for costs and potentials in the
    65   /// \tparam C The number type used for costs and potentials in the
    66   /// algorithm. By default, it is the same as \c V.
    66   /// algorithm. By default, it is the same as \c V.
    67   ///
    67   ///
    68   /// \warning Both number types must be signed and all input data must
    68   /// \warning Both \c V and \c C must be signed number types.
       
    69   /// \warning All input data (capacities, supply values, and costs) must
    69   /// be integer.
    70   /// be integer.
    70   /// \warning This algorithm does not support negative costs for such
    71   /// \warning This algorithm does not support negative costs for such
    71   /// arcs that have infinite upper bound.
    72   /// arcs that have infinite upper bound.
    72   ///
    73   ///
    73   /// \note For more information about the three available methods,
    74   /// \note For more information about the three available methods,