/* Programmer: Sriram Pemmaraju. Nov 24th, 2007

*/
import java.io.*;

public class CityTester1{

	//Main method
	public static void main(String[] args) {
		City newCity = new City();
		myWeightedGraph g, h;
		String[] path;

		System.out.println("---------------------------------------------------------------------------------------");
		System.out.println("EXPERIMENT 1. Computes and prints a greedy TSP of all 128 cities.");
		newCity.selectAllCities();
		g = newCity.makeGraph();
		g.printGreedyTSP();
		System.out.println("The cost of this TSP is " + g.costGreedyTSP());
		System.out.println("---------------------------------------------------------------------------------------");

	}
}
