Remove some debug code.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1549985 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart 2013-12-10 22:13:14 +00:00
parent ab0a2f761f
commit 7ebbaea90e
1 changed files with 6 additions and 16 deletions

View File

@ -142,24 +142,14 @@ public class ImageEvolutionExample {
noStopRequested = true;
Runnable r = new Runnable() {
public void run() {
try {
double lastBestFit = Double.MIN_VALUE;
int evolution = 0;
while (noStopRequested) {
currentPopulation = ga.nextGeneration(currentPopulation);
int evolution = 0;
while (noStopRequested) {
currentPopulation = ga.nextGeneration(currentPopulation);
System.out.println("generation: " + evolution++ + ": " + bestFit.toString());
bestFit = currentPopulation.getFittestChromosome();
System.out.println("generation: " + evolution++ + ": " + bestFit.toString());
bestFit = currentPopulation.getFittestChromosome();
if (lastBestFit > bestFit.getFitness()) {
System.out.println("gotcha");
}
lastBestFit = bestFit.getFitness();
painter.repaint();
}
} catch (Exception x) {
// in case ANY exception slips through
x.printStackTrace();
painter.repaint();
}
}
};