Changes in / [1038:a2d142bb5d3c:1030:4936be66d2f5] in lemon-main
- Files:
-
- 7 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/CMakeLists.txt
r1038 r983 47 47 COMMAND ${GHOSTSCRIPT_EXECUTABLE} ${GHOSTSCRIPT_OPTIONS} -r18 -sOutputFile=gen-images/planar.png ${CMAKE_CURRENT_SOURCE_DIR}/images/planar.eps 48 48 COMMAND ${GHOSTSCRIPT_EXECUTABLE} ${GHOSTSCRIPT_OPTIONS} -r18 -sOutputFile=gen-images/strongly_connected_components.png ${CMAKE_CURRENT_SOURCE_DIR}/images/strongly_connected_components.eps 49 COMMAND ${GHOSTSCRIPT_EXECUTABLE} ${GHOSTSCRIPT_OPTIONS} -r18 -sOutputFile=gen-images/tsp.png ${CMAKE_CURRENT_SOURCE_DIR}/images/tsp.eps50 49 COMMAND ${CMAKE_COMMAND} -E remove_directory html 51 50 COMMAND ${PYTHON_EXECUTABLE} ${PROJECT_SOURCE_DIR}/scripts/bib2dox.py ${CMAKE_CURRENT_SOURCE_DIR}/references.bib >references.dox -
doc/groups.dox
r1038 r1003 559 559 \image latex planar.eps "Plane graph" width=\textwidth 560 560 */ 561 562 /**563 @defgroup tsp Traveling Salesman Problem564 @ingroup algs565 \brief Algorithms for the symmetric traveling salesman problem566 567 This group contains basic heuristic algorithms for the the symmetric568 \e traveling \e salesman \e problem (TSP).569 Given an \ref FullGraph "undirected full graph" with a cost map on its edges,570 the problem is to find a shortest possible tour that visits each node exactly571 once (i.e. the minimum cost Hamiltonian cycle).572 573 These TSP algorithms are intended to be used with a \e metric \e cost574 \e function, i.e. the edge costs should satisfy the triangle inequality.575 Otherwise the algorithms could yield worse results.576 577 LEMON provides five well-known heuristics for solving symmetric TSP:578 - \ref NearestNeighborTsp Neareast neighbor algorithm579 - \ref GreedyTsp Greedy algorithm580 - \ref InsertionTsp Insertion heuristic (with four selection methods)581 - \ref ChristofidesTsp Christofides algorithm582 - \ref Opt2Tsp 2-opt algorithm583 584 \ref NearestNeighborTsp, \ref GreedyTsp, and \ref InsertionTsp are the fastest585 solution methods. Furthermore, \ref InsertionTsp is usually quite effective.586 587 \ref ChristofidesTsp is somewhat slower, but it has the best guaranteed588 approximation factor: 3/2.589 590 \ref Opt2Tsp usually provides the best results in practice, but591 it is the slowest method. It can also be used to improve given tours,592 for example, the results of other algorithms.593 594 \image html tsp.png595 \image latex tsp.eps "Traveling salesman problem" width=\textwidth596 */597 561 598 562 /** -
test/CMakeLists.txt
r1038 r1030 53 53 suurballe_test 54 54 time_measure_test 55 tsp_test56 55 unionfind_test 57 56 )
Note: See TracChangeset
for help on using the changeset viewer.