COIN-OR::LEMON - Graph Library

Ignore:
Files:
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • NEWS

    r1320 r1281  
    1 2014-07-07 Version 1.3.1 released
    2 
    3         Bugfix release.
    4 
    5         #484: Require CMAKE 2.8
    6         #471, #472, #480: Various clang compatibility fixes
    7         #481, #482: Fix shared lib build and versioning
    8         #476: Fix invalid map query in NearestNeighborTsp
    9         #478: Bugfix in debug checking and lower bound handling
    10               in min cost flow algorithms
    11         #479, #465: Bugfix in default LP/MIP backend settings
    12         #476: Bugfix in tsp_test
    13         #487: Add missing include header and std:: namespace spec.
    14         #474: Fix division by zero error in NetworkSimplex
    15 
    1612013-08-10 Version 1.3 released
    172
  • doc/groups.dox

    r1280 r1271  
    295295
    296296/**
     297@defgroup matrices Matrices
     298@ingroup auxdat
     299\brief Two dimensional data storages implemented in LEMON.
     300
     301This group contains two dimensional data storages implemented in LEMON.
     302*/
     303
     304/**
    297305@defgroup algs Algorithms
    298306\brief This group contains the several algorithms
     
    327335   but the digraph should not contain directed cycles with negative total
    328336   length.
     337 - \ref FloydWarshall "Floyd-Warshall" and \ref Johnson "Johnson" algorithms
     338   for solving the \e all-pairs \e shortest \e paths \e problem when arc
     339   lenghts can be either positive or negative, but the digraph should
     340   not contain directed cycles with negative total length.
    329341 - \ref Suurballe A successive shortest path algorithm for finding
    330342   arc-disjoint paths between two nodes having minimum total length.
     
    360372\f[ 0 \leq f(uv) \leq cap(uv) \quad \forall uv\in A \f]
    361373
    362 \ref Preflow is an efficient implementation of Goldberg-Tarjan's
    363 preflow push-relabel algorithm \cite goldberg88newapproach for finding
    364 maximum flows. It also provides functions to query the minimum cut,
    365 which is the dual problem of maximum flow.
     374LEMON contains several algorithms for solving maximum flow problems:
     375- \ref EdmondsKarp Edmonds-Karp algorithm
     376  \cite edmondskarp72theoretical.
     377- \ref Preflow Goldberg-Tarjan's preflow push-relabel algorithm
     378  \cite goldberg88newapproach.
     379- \ref DinitzSleatorTarjan Dinitz's blocking flow algorithm with dynamic trees
     380  \cite dinic70algorithm, \cite sleator83dynamic.
     381- \ref GoldbergTarjan !Preflow push-relabel algorithm with dynamic trees
     382  \cite goldberg88newapproach, \cite sleator83dynamic.
     383
     384In most cases the \ref Preflow algorithm provides the
     385fastest method for computing a maximum flow. All implementations
     386also provide functions to query the minimum cut, which is the dual
     387problem of maximum flow.
    366388
    367389\ref Circulation is a preflow push-relabel algorithm implemented directly
     
    498520
    499521The matching algorithms implemented in LEMON:
     522- \ref MaxBipartiteMatching Hopcroft-Karp augmenting path algorithm
     523  for calculating maximum cardinality matching in bipartite graphs.
     524- \ref PrBipartiteMatching Push-relabel algorithm
     525  for calculating maximum cardinality matching in bipartite graphs.
     526- \ref MaxWeightedBipartiteMatching
     527  Successive shortest path algorithm for calculating maximum weighted
     528  matching and maximum weighted bipartite matching in bipartite graphs.
     529- \ref MinCostMaxBipartiteMatching
     530  Successive shortest path algorithm for calculating minimum cost maximum
     531  matching in bipartite graphs.
    500532- \ref MaxMatching Edmond's blossom shrinking algorithm for calculating
    501533  maximum cardinality matching in general graphs.
     
    622654
    623655/**
     656@defgroup lp_utils Tools for Lp and Mip Solvers
     657@ingroup lp_group
     658\brief Helper tools to the Lp and Mip solvers.
     659
     660This group adds some helper tools to general optimization framework
     661implemented in LEMON.
     662*/
     663
     664/**
     665@defgroup metah Metaheuristics
     666@ingroup gen_opt_group
     667\brief Metaheuristics for LEMON library.
     668
     669This group contains some metaheuristic optimization tools.
     670*/
     671
     672/**
    624673@defgroup utils Tools and Utilities
    625674\brief Tools and utilities for programming in LEMON
Note: See TracChangeset for help on using the changeset viewer.