this.genetic.iteration();
this.universe.reset();
DoubleArrayGenome bestGenome = (DoubleArrayGenome) this.genetic.getBestGenome();
PlantGrowth growth = new PlantGrowth();
PlantPhysics physics = new PlantPhysics();
for (int i = 0; i < PlantUniverse.EVALUATION_CYCLES; i++) {
physics.runPhysics(universe);
growth.runGrowth(universe, bestGenome.getData());
}
this.display.setGeneration(generation);
this.display.setBestScore(this.genetic.getBestGenome().getScore());
this.display.repaint();