COIN-OR::LEMON - Graph Library

Changeset 1200:62ba43576f85 in lemon for doc/groups.dox


Ignore:
Timestamp:
01/08/11 22:49:09 (13 years ago)
Author:
Peter Kovacs <kpeter@…>
Branch:
default
Phase:
public
Message:

Doc group for TSP algorithms (#386)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/groups.dox

    r999 r1200  
    550550\image latex planar.eps "Plane graph" width=\textwidth
    551551*/
     552 
     553/**
     554@defgroup tsp Traveling Salesman Problem
     555@ingroup algs
     556\brief Algorithms for the symmetric traveling salesman problem
     557
     558This group contains basic heuristic algorithms for the the symmetric
     559\e traveling \e salesman \e problem (TSP).
     560Given an \ref FullGraph "undirected full graph" with a cost map on its edges,
     561the problem is to find a shortest possible tour that visits each node exactly
     562once (i.e. the minimum cost Hamiltonian cycle).
     563
     564These TSP algorithms should be used with a
     565metric cost function. Otherwise, they could yield worse results.
     566
     567LEMON provides five well-known heuristics for solving symmetric TSP:
     568 - \ref NearestNeighborTsp Neareast neighbor algorithm
     569 - \ref GreedyTsp Greedy algorithm
     570 - \ref InsertionTsp Insertion heuristic (with four selection methods)
     571 - \ref ChristofidesTsp Christofides algorithm
     572 - \ref Opt2Tsp 2-opt algorithm
     573
     574\image html tsp.png
     575\image latex tsp.eps "Traveling salesman problem" width=\textwidth
     576*/
    552577
    553578/**
Note: See TracChangeset for help on using the changeset viewer.