java.lang.Object
org.jgrapht.alg.tour.HamiltonianCycleAlgorithmBase<V,E>
 
org.jgrapht.alg.tour.RandomTourTSP<V,E> 
- Type Parameters:
 V- the graph vertex typeE- the graph edge type
- All Implemented Interfaces:
 HamiltonianCycleAlgorithm<V,E> 
Generate a random tour.
 
This class generates a random Hamiltonian Cycle. This is a simple unoptimised solution to the Travelling Salesman Problem, or more usefully is a starting point for optimising a tour using TwoOptHeuristicTSP.
- Author:
 - Peter Harman, Dimitrios Michail
 
- 
Constructor Summary
ConstructorsConstructorDescriptionConstruct with default random number generatorRandomTourTSP(Random rng) Construct with specified random number generator - 
Method Summary
Methods inherited from class org.jgrapht.alg.tour.HamiltonianCycleAlgorithmBase
checkGraph, closedVertexListToTour, edgeSetToTour, getSingletonTour, requireNotEmpty, vertexListToTour 
- 
Constructor Details
- 
RandomTourTSP
public RandomTourTSP()Construct with default random number generator - 
RandomTourTSP
Construct with specified random number generator- Parameters:
 rng- The random number generator
 
 - 
 - 
Method Details
- 
getTour
Computes a tour using the greedy heuristic.- Parameters:
 graph- the input graph- Returns:
 - a tour
 - Throws:
 IllegalArgumentException- if the graph is not undirectedIllegalArgumentException- if the graph is not completeIllegalArgumentException- if the graph contains no vertices
 
 -