COIN-OR::LEMON - Graph Library

Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/groups.dox

    r755 r742  
    317317
    318318This group contains the common graph search algorithms, namely
    319 \e breadth-first \e search (BFS) and \e depth-first \e search (DFS)
    320 \ref clrs01algorithms.
     319\e breadth-first \e search (BFS) and \e depth-first \e search (DFS).
    321320*/
    322321
     
    326325\brief Algorithms for finding shortest paths.
    327326
    328 This group contains the algorithms for finding shortest paths in digraphs
    329 \ref clrs01algorithms.
     327This group contains the algorithms for finding shortest paths in digraphs.
    330328
    331329 - \ref Dijkstra algorithm for finding shortest paths from a source node
     
    349347
    350348This group contains the algorithms for finding minimum cost spanning
    351 trees and arborescences \ref clrs01algorithms.
     349trees and arborescences.
    352350*/
    353351
     
    358356
    359357This group contains the algorithms for finding maximum flows and
    360 feasible circulations \ref clrs01algorithms, \ref amo93networkflows.
     358feasible circulations.
    361359
    362360The \e maximum \e flow \e problem is to find a flow of maximum value between
     
    373371
    374372LEMON contains several algorithms for solving maximum flow problems:
    375 - \ref EdmondsKarp Edmonds-Karp algorithm
    376   \ref edmondskarp72theoretical.
    377 - \ref Preflow Goldberg-Tarjan's preflow push-relabel algorithm
    378   \ref goldberg88newapproach.
    379 - \ref DinitzSleatorTarjan Dinitz's blocking flow algorithm with dynamic trees
    380   \ref dinic70algorithm, \ref sleator83dynamic.
    381 - \ref GoldbergTarjan !Preflow push-relabel algorithm with dynamic trees
    382   \ref goldberg88newapproach, \ref sleator83dynamic.
    383 
    384 In most cases the \ref Preflow algorithm provides the
     373- \ref EdmondsKarp Edmonds-Karp algorithm.
     374- \ref Preflow Goldberg-Tarjan's preflow push-relabel algorithm.
     375- \ref DinitzSleatorTarjan Dinitz's blocking flow algorithm with dynamic trees.
     376- \ref GoldbergTarjan Preflow push-relabel algorithm with dynamic trees.
     377
     378In most cases the \ref Preflow "Preflow" algorithm provides the
    385379fastest method for computing a maximum flow. All implementations
    386380also provide functions to query the minimum cut, which is the dual
     
    400394
    401395This group contains the algorithms for finding minimum cost flows and
    402 circulations \ref amo93networkflows. For more information about this
    403 problem and its dual solution, see \ref min_cost_flow
    404 "Minimum Cost Flow Problem".
     396circulations. For more information about this problem and its dual
     397solution see \ref min_cost_flow "Minimum Cost Flow Problem".
    405398
    406399LEMON contains several algorithms for this problem.
    407400 - \ref NetworkSimplex Primal Network Simplex algorithm with various
    408    pivot strategies \ref dantzig63linearprog, \ref kellyoneill91netsimplex.
     401   pivot strategies.
    409402 - \ref CostScaling Push-Relabel and Augment-Relabel algorithms based on
    410    cost scaling \ref goldberg90approximation, \ref goldberg97efficient,
    411    \ref bunnagel98efficient.
     403   cost scaling.
    412404 - \ref CapacityScaling Successive Shortest %Path algorithm with optional
    413    capacity scaling \ref edmondskarp72theoretical.
    414  - \ref CancelAndTighten The Cancel and Tighten algorithm
    415    \ref goldberg89cyclecanceling.
    416  - \ref CycleCanceling Cycle-Canceling algorithms
    417    \ref klein67primal, \ref goldberg89cyclecanceling.
     405   capacity scaling.
     406 - \ref CancelAndTighten The Cancel and Tighten algorithm.
     407 - \ref CycleCanceling Cycle-Canceling algorithms.
    418408
    419409In general NetworkSimplex is the most efficient implementation,
     
    545535
    546536/**
    547 @defgroup lp_group LP and MIP Solvers
     537@defgroup lp_group Lp and Mip Solvers
    548538@ingroup gen_opt_group
    549 \brief LP and MIP solver interfaces for LEMON.
    550 
    551 This group contains LP and MIP solver interfaces for LEMON.
    552 Various LP solvers could be used in the same manner with this
    553 high-level interface.
    554 
    555 The currently supported solvers are \ref glpk, \ref clp, \ref cbc,
    556 \ref cplex, \ref soplex.
     539\brief Lp and Mip solver interfaces for LEMON.
     540
     541This group contains Lp and Mip solver interfaces for LEMON. The
     542various LP solvers could be used in the same manner with this
     543interface.
    557544*/
    558545
Note: See TracChangeset for help on using the changeset viewer.