From de8f80cf941f20d7a3040b42776d58b7f8cfb3d4 Mon Sep 17 00:00:00 2001 From: Antonin Portelli Date: Tue, 13 Dec 2016 19:02:05 +0000 Subject: [PATCH] Hadrons: genetic operators improvement --- extras/Hadrons/GeneticScheduler.hpp | 36 ++++++++++++++++++++--------- 1 file changed, 25 insertions(+), 11 deletions(-) diff --git a/extras/Hadrons/GeneticScheduler.hpp b/extras/Hadrons/GeneticScheduler.hpp index 46272a83..88ab41f8 100644 --- a/extras/Hadrons/GeneticScheduler.hpp +++ b/extras/Hadrons/GeneticScheduler.hpp @@ -79,8 +79,9 @@ private: void doMutation(void); // genetic operators GenePair selectPair(void); - void crossover(Gene &c, const Gene &p1, const Gene &p2); + void crossover(Gene &c1, Gene &c2, const Gene &p1, const Gene &p2); void mutation(Gene &m, const Gene &c); + private: Graph &graph_; const ObjFunc &func_; @@ -169,11 +170,10 @@ template void GeneticScheduler::doCrossover(void) { auto p = selectPair(); - auto &p1 = *(p.first), &p2 = *(p.second); + Gene &p1 = *(p.first), &p2 = *(p.second); Gene c1, c2; - crossover(c1, p1, p2); - crossover(c2, p2, p1); + crossover(c1, c2, p1, p2); PARALLEL_CRITICAL { population_.emplace(func_(c1), c1); @@ -196,7 +196,6 @@ void GeneticScheduler::doMutation(void) mutation(m, it->second); PARALLEL_CRITICAL { - population_.erase(it); population_.emplace(func_(m), m); } } @@ -236,22 +235,37 @@ typename GeneticScheduler::GenePair GeneticScheduler::selectPair(void) } template -void GeneticScheduler::crossover(Gene &c, const Gene &p1, const Gene &p2) +void GeneticScheduler::crossover(Gene &c1, Gene &c2, const Gene &p1, + const Gene &p2) { Gene buf; std::uniform_int_distribution dis(0, p1.size() - 1); unsigned int cut = dis(gen_); - c.clear(); - buf = p1; + c1.clear(); + buf = p2; for (unsigned int i = 0; i < cut; ++i) { - c.push_back(p2[i]); - buf.erase(std::find(buf.begin(), buf.end(), p2[i])); + c1.push_back(p1[i]); + buf.erase(std::find(buf.begin(), buf.end(), p1[i])); } for (unsigned int i = 0; i < buf.size(); ++i) { - c.push_back(buf[i]); + c1.push_back(buf[i]); + } + c2.clear(); + buf = p2; + for (unsigned int i = cut; i < p1.size(); ++i) + { + buf.erase(std::find(buf.begin(), buf.end(), p1[i])); + } + for (unsigned int i = 0; i < buf.size(); ++i) + { + c2.push_back(buf[i]); + } + for (unsigned int i = cut; i < p1.size(); ++i) + { + c2.push_back(p1[i]); } }