lemon/network_simplex.h
changeset 921 140c953ad5d1
parent 896 fb932bcfd803
child 922 9312d6c89d02
equal deleted inserted replaced
33:10e2509a447b 35:8cc1259f13b6
    61   /// \tparam V The number type used for flow amounts, capacity bounds
    61   /// \tparam V The number type used for flow amounts, capacity bounds
    62   /// and supply values in the algorithm. By default, it is \c int.
    62   /// and supply values in the algorithm. By default, it is \c int.
    63   /// \tparam C The number type used for costs and potentials in the
    63   /// \tparam C The number type used for costs and potentials in the
    64   /// algorithm. By default, it is the same as \c V.
    64   /// algorithm. By default, it is the same as \c V.
    65   ///
    65   ///
    66   /// \warning Both number types must be signed and all input data must
    66   /// \warning Both \c V and \c C must be signed number types.
       
    67   /// \warning All input data (capacities, supply values, and costs) must
    67   /// be integer.
    68   /// be integer.
    68   ///
    69   ///
    69   /// \note %NetworkSimplex provides five different pivot rule
    70   /// \note %NetworkSimplex provides five different pivot rule
    70   /// implementations, from which the most efficient one is used
    71   /// implementations, from which the most efficient one is used
    71   /// by default. For more information, see \ref PivotRule.
    72   /// by default. For more information, see \ref PivotRule.