COIN-OR::LEMON - Graph Library

Changeset 932:773dd96ecdd8 in lemon-main


Ignore:
Timestamp:
03/17/11 09:02:51 (13 years ago)
Author:
Alpar Juttner <alpar@…>
Branch:
default
Parents:
930:8e39ccaabf48 (diff), 931:f112c18bc304 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Phase:
public
Message:

Merge #417

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • lemon/cost_scaling.h

    r922 r932  
    912912          break;
    913913        case AUGMENT:
    914           startAugment();
     914          startAugment(_res_node_num - 1);
    915915          break;
    916916        case PARTIAL_AUGMENT:
     
    10891089
    10901090    /// Execute the algorithm performing augment and relabel operations
    1091     void startAugment(int max_length = std::numeric_limits<int>::max()) {
     1091    void startAugment(int max_length) {
    10921092      // Paramters for heuristics
    10931093      const int EARLY_TERM_EPSILON_LIMIT = 1000;
  • lemon/cost_scaling.h

    r931 r932  
    9898  /// "preflow push-relabel" algorithm for the maximum flow problem.
    9999  ///
     100  /// In general, \ref NetworkSimplex and \ref CostScaling are the fastest
     101  /// implementations available in LEMON for this problem.
     102  ///
    100103  /// Most of the parameters of the problem (except for the digraph)
    101104  /// can be given using separate functions, and the algorithm can be
     
    114117  /// consider to use the named template parameters instead.
    115118  ///
    116   /// \warning Both number types must be signed and all input data must
     119  /// \warning Both \c V and \c C must be signed number types.
     120  /// \warning All input data (capacities, supply values, and costs) must
    117121  /// be integer.
    118   /// \warning This algorithm does not support negative costs for such
    119   /// arcs that have infinite upper bound.
     122  /// \warning This algorithm does not support negative costs for
     123  /// arcs having infinite upper bound.
    120124  ///
    121125  /// \note %CostScaling provides three different internal methods,
     
    179183    /// relabel operation.
    180184    /// By default, the so called \ref PARTIAL_AUGMENT
    181     /// "Partial Augment-Relabel" method is used, which proved to be
     185    /// "Partial Augment-Relabel" method is used, which turned out to be
    182186    /// the most efficient and the most robust on various test inputs.
    183187    /// However, the other methods can be selected using the \ref run()
     
    448452    ///
    449453    /// Using this function has the same effect as using \ref supplyMap()
    450     /// with such a map in which \c k is assigned to \c s, \c -k is
     454    /// with a map in which \c k is assigned to \c s, \c -k is
    451455    /// assigned to \c t and all other nodes have zero supply value.
    452456    ///
Note: See TracChangeset for help on using the changeset viewer.