# Positions of the ten cities
# Standard positions used by e.g. [Wilson and Pawley, 1988]

import numpy

city = numpy.array([[0.4000, 0.4439],
		    [0.2439, 0.1463],
		    [0.1707, 0.2293],
		    [0.2293, 0.7610],
		    [0.5171, 0.9414],
		    [0.8732, 0.6536],
		    [0.6878, 0.5219],
		    [0.8488, 0.3609],
		    [0.6683, 0.2536],
		    [0.6195, 0.2634]])


# Clean up stuff that should not be exported
del numpy
