Uses of Class
tsp.Coord

Packages that use Coord
tsp   
 

Uses of Coord in tsp
 

Fields in tsp with type parameters of type Coord
private  java.util.Vector<Coord> TravelingSalesmanProblem.cities
           
 

Methods in tsp that return types with arguments of type Coord
 java.util.Vector<Coord> TravelingSalesmanProblem.getCities()
           
 

Methods in tsp with parameters of type Coord
static double Coord.dist(Coord a, Coord b)
          A paraméterként kapott két város távolságát adja vissza
 

Method parameters in tsp with type arguments of type Coord
 void TravelingSalesmanProblem.setCities(java.util.Vector<Coord> cities)
           
 

Constructor parameters in tsp with type arguments of type Coord
TravelingSalesmanProblem(java.util.Vector<Coord> coords)
          A paraméterben megadott koordinátákkal létrehoz egy körutat (egyedet)
TravelingSalesmanProblem(java.util.Vector<Coord> coords, int numberOfCities)