public Statistics statistics;
public Log log;
public City(int sizeX, int sizeY, long seed){
log = new Log();
this.sizeX = sizeX;
this.sizeY = sizeY;
random = new Random(seed);
for(int i=0; i<10; i++){ //warm up the random number generator
random.nextDouble();