COIN-OR::LEMON - Graph Library

Changeset 1202:ef200e268af2 in lemon for lemon/insertion_tsp.h


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

Unifications and improvements in TSP algorithms (#386)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/insertion_tsp.h

    r1201 r1202  
    3131namespace lemon {
    3232
     33  /// \ingroup tsp
     34  ///
    3335  /// \brief Insertion algorithm for symmetric TSP.
    3436  ///
     
    7577      /// During the algorithm, nodes are selected for addition to the current
    7678      /// subtour according to the applied rule.
    77       /// In general, the FARTHEST yields the best tours, thus it is the
    78       /// default option. RANDOM usually gives somewhat worse results, but
    79       /// it is much faster than the others and it is the most robust.
     79      /// In general, the FARTHEST method yields the best tours, thus it is the
     80      /// default option. The RANDOM rule usually gives somewhat worse results,
     81      /// but it is much faster than the others and it is the most robust.
    8082      ///
    8183      /// The desired selection rule can be specified as a parameter of the
     
    179181      /// found tour.
    180182      ///
    181       /// This function returns a const reference to the internal structure
     183      /// This function returns a const reference to a vector
    182184      /// that stores the node sequence of the found tour.
    183185      ///
Note: See TracChangeset for help on using the changeset viewer.