From af5822f99e75aa18cc45d2378ee18c2308c2e2c1 Mon Sep 17 00:00:00 2001 From: Mark Bluemer Date: Tue, 2 May 2017 08:59:34 -0400 Subject: [PATCH] small fix --- src/GeneticSimulation.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/GeneticSimulation.cpp b/src/GeneticSimulation.cpp index 3c1e5ce..0b17e34 100644 --- a/src/GeneticSimulation.cpp +++ b/src/GeneticSimulation.cpp @@ -77,6 +77,7 @@ void GeneticSimulation::simulate(){ int n = population.size(); for (int i = 0; i < n; ++i) { Specimen temp = population.front(); + population.pop(); s << "+++++++++++++++++++++++++++++++" << std::endl; s << "START: " << std::endl; s << temp.getStartHeuristics().coefficientsToString();