lemon/min_cost_flow.h
changeset 2509 a8081c9cd96a
parent 2474 e6368948d5f7
child 2533 aea952a1af99
equal deleted inserted replaced
6:9b308e140693 7:e6a59dbd8c6d
    54   /// \param SupplyMap The type of the supply map.
    54   /// \param SupplyMap The type of the supply map.
    55   ///
    55   ///
    56   /// \warning
    56   /// \warning
    57   /// - Edge capacities and costs should be nonnegative integers.
    57   /// - Edge capacities and costs should be nonnegative integers.
    58   ///	However \c CostMap::Value should be signed type.
    58   ///	However \c CostMap::Value should be signed type.
    59   /// - Supply values should be integers.
    59   /// - Supply values should be signed integers.
    60   /// - \c LowerMap::Value must be convertible to
    60   /// - \c LowerMap::Value must be convertible to
    61   ///	\c CapacityMap::Value and \c CapacityMap::Value must be
    61   ///	\c CapacityMap::Value and \c CapacityMap::Value must be
    62   ///	convertible to \c SupplyMap::Value.
    62   ///	convertible to \c SupplyMap::Value.
    63   ///
    63   ///
    64   /// \author Peter Kovacs
    64   /// \author Peter Kovacs