COIN-OR::LEMON - Graph Library

Changeset 2225:bb3d5e6f9fcb in lemon-0.x for lemon/min_cut.h


Ignore:
Timestamp:
09/29/06 13:36:30 (18 years ago)
Author:
Balazs Dezso
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2965
Message:

Doc fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/min_cut.h

    r2176 r2225  
    831831  /// \ingroup topology
    832832  ///
    833   /// \brief Calculates the min cut in an undirected graph.
     833  /// \brief Calculates the minimum cut in an undirected graph.
    834834  ///
    835   /// Calculates the min cut in an undirected graph.
    836   /// The algorithm separates the graph's nodes into two partitions with the
    837   /// min sum of edge capacities between the two partitions. The
    838   /// algorithm can be used to test the network reliability specifically
    839   /// to test how many links have to be destroyed in the network to split it
    840   /// at least two distinict subnetwork.
     835  /// Calculates the minimum cut in an undirected graph with the
     836  /// Nagamochi-Ibaraki algorithm. The algorithm separates the graph's
     837  /// nodes into two partitions with the minimum sum of edge capacities
     838  /// between the two partitions. The algorithm can be used to test
     839  /// the network reliability specifically to test how many links have
     840  /// to be destroyed in the network to split it at least two
     841  /// distinict subnetwork.
    841842  ///
    842843  /// The complexity of the algorithm is \f$ O(ne\log(n)) \f$ but with
    843   /// Fibonacci heap it can be decreased to \f$ O(ne+n^2\log(n)) \f$. When
    844   /// the neutral capacity map is used then it uses BucketHeap which
     844  /// Fibonacci heap it can be decreased to \f$ O(ne+n^2\log(n))
     845  /// \f$. When capacity map is neutral then it uses BucketHeap which
    845846  /// results \f$ O(ne) \f$ time complexity.
    846847#ifdef DOXYGEN
Note: See TracChangeset for help on using the changeset viewer.