COIN-OR::LEMON - Graph Library

Ignore:
Files:
12 edited

Legend:

Unmodified
Added
Removed
  • doc/groups.dox

    r1221 r1254  
    498498time is exponential.
    499499Both \ref KarpMmc "Karp" and \ref HartmannOrlinMmc "Hartmann-Orlin" algorithms
    500 run in time O(ne) and use space O(n<sup>2</sup>+e).
     500run in time O(nm) and use space O(n<sup>2</sup>+m).
    501501*/
    502502
  • lemon/bellman_ford.h

    r1250 r1254  
    150150  /// This class provides an efficient implementation of the Bellman-Ford
    151151  /// algorithm. The maximum time complexity of the algorithm is
    152   /// <tt>O(ne)</tt>.
     152  /// <tt>O(nm)</tt>.
    153153  ///
    154154  /// The Bellman-Ford algorithm solves the single-source shortest path
  • lemon/capacity_scaling.h

    r1250 r1254  
    7070  /// \cite edmondskarp72theoretical. It is an efficient dual
    7171  /// solution method, which runs in polynomial time
    72   /// \f$O(e\log U (n+e)\log n)\f$, where <i>U</i> denotes the maximum
     72  /// \f$O(m\log U (n+m)\log n)\f$, where <i>U</i> denotes the maximum
    7373  /// of node supply and arc capacity values.
    7474  ///
     
    647647    ///
    648648    /// This function returns the total cost of the found flow.
    649     /// Its complexity is O(e).
     649    /// Its complexity is O(m).
    650650    ///
    651651    /// \note The return type of the function can be specified as a
  • lemon/cost_scaling.h

    r1250 r1254  
    9898  /// "preflow push-relabel" algorithm for the maximum flow problem.
    9999  /// It is a polynomial algorithm, its running time complexity is
    100   /// \f$O(n^2e\log(nK))\f$, where <i>K</i> denotes the maximum arc cost.
     100  /// \f$O(n^2m\log(nK))\f$, where <i>K</i> denotes the maximum arc cost.
    101101  ///
    102102  /// In general, \ref NetworkSimplex and \ref CostScaling are the fastest
     
    671671    ///
    672672    /// This function returns the total cost of the found flow.
    673     /// Its complexity is O(e).
     673    /// Its complexity is O(m).
    674674    ///
    675675    /// \note The return type of the function can be specified as a
  • lemon/cycle_canceling.h

    r1241 r1255  
    5252  /// The most efficent one is the \ref CANCEL_AND_TIGHTEN
    5353  /// "Cancel-and-Tighten" algorithm, thus it is the default method.
    54   /// It runs in strongly polynomial time O(n<sup>2</sup>e<sup>2</sup>log(n)),
     54  /// It runs in strongly polynomial time \f$O(n^2 m^2 \log n)\f$,
    5555  /// but in practice, it is typically orders of magnitude slower than
    5656  /// the scaling algorithms and \ref NetworkSimplex.
     
    134134      /// \cite goldberg89cyclecanceling. It improves along a
    135135      /// \ref min_mean_cycle "minimum mean cycle" in each iteration.
    136       /// Its running time complexity is O(n<sup>2</sup>e<sup>3</sup>log(n)).
     136      /// Its running time complexity is \f$O(n^2 m^3 \log n)\f$.
    137137      MINIMUM_MEAN_CYCLE_CANCELING,
    138138      /// The "Cancel-and-Tighten" algorithm, which can be viewed as an
     
    140140      /// \cite goldberg89cyclecanceling.
    141141      /// It is faster both in theory and in practice, its running time
    142       /// complexity is O(n<sup>2</sup>e<sup>2</sup>log(n)).
     142      /// complexity is \f$O(n^2 m^2 \log n)\f$.
    143143      CANCEL_AND_TIGHTEN
    144144    };
     
    577577    ///
    578578    /// This function returns the total cost of the found flow.
    579     /// Its complexity is O(e).
     579    /// Its complexity is O(m).
    580580    ///
    581581    /// \note The return type of the function can be specified as a
  • lemon/gomory_hu.h

    r956 r1254  
    4747  ///
    4848  /// The algorithm calculates \e n-1 distinct minimum cuts (currently with
    49   /// the \ref Preflow algorithm), thus it has \f$O(n^3\sqrt{e})\f$ overall
     49  /// the \ref Preflow algorithm), thus it has \f$O(n^3\sqrt{m})\f$ overall
    5050  /// time complexity. It calculates a rooted Gomory-Hu tree.
    5151  /// The structure of the tree and the edge weights can be
  • lemon/hartmann_orlin_mmc.h

    r1250 r1254  
    103103  /// applies an early termination scheme. It makes the algorithm
    104104  /// significantly faster for some problem instances, but slower for others.
    105   /// The algorithm runs in time O(ne) and uses space O(n<sup>2</sup>+e).
     105  /// The algorithm runs in time O(nm) and uses space O(n<sup>2</sup>+m).
    106106  ///
    107107  /// \tparam GR The type of the digraph the algorithm runs on.
  • lemon/karp_mmc.h

    r1250 r1254  
    100100  /// cycle of minimum mean cost in a digraph
    101101  /// \cite karp78characterization, \cite dasdan98minmeancycle.
    102   /// It runs in time O(ne) and uses space O(n<sup>2</sup>+e).
     102  /// It runs in time O(nm) and uses space O(n<sup>2</sup>+m).
    103103  ///
    104104  /// \tparam GR The type of the digraph the algorithm runs on.
  • lemon/min_cost_arborescence.h

    r1250 r1254  
    102102  /// the minimum cost subgraph that is the union of arborescences with the
    103103  /// given sources and spans all the nodes which are reachable from the
    104   /// sources. The time complexity of the algorithm is O(n<sup>2</sup>+e).
     104  /// sources. The time complexity of the algorithm is O(n<sup>2</sup>+m).
    105105  ///
    106106  /// The algorithm also provides an optimal dual solution, therefore
  • lemon/network_simplex.h

    r1241 r1254  
    974974    ///
    975975    /// This function returns the total cost of the found flow.
    976     /// Its complexity is O(e).
     976    /// Its complexity is O(m).
    977977    ///
    978978    /// \note The return type of the function can be specified as a
  • lemon/preflow.h

    r1250 r1254  
    108108  /// flow algorithms. The current implementation uses a mixture of the
    109109  /// \e "highest label" and the \e "bound decrease" heuristics.
    110   /// The worst case time complexity of the algorithm is \f$O(n^2\sqrt{e})\f$.
     110  /// The worst case time complexity of the algorithm is \f$O(n^2\sqrt{m})\f$.
    111111  ///
    112112  /// The algorithm consists of two phases. After the first phase
  • lemon/suurballe.h

    r1250 r1254  
    683683    /// This function returns the total length of the found paths, i.e.
    684684    /// the total cost of the found flow.
    685     /// The complexity of the function is O(e).
     685    /// The complexity of the function is O(m).
    686686    ///
    687687    /// \pre \ref run() or \ref findFlow() must be called before using
Note: See TracChangeset for help on using the changeset viewer.