19 #include <core/ann_activation_functions.h> 20 #include <core/utils.h> 21 #include <core/darwin.h> 22 #include <core/evolution.h> 23 #include <core/logging.h> 24 #include <core/parallel_for_each.h> 35 template <
class GENOTYPE>
37 class GenotypeFactory :
public selection::GenotypeFactory {
39 void init(Population* population, GENOTYPE* genotype) {
40 population_ = population;
44 void createPrimordialSeed()
override {
45 genotype_->createPrimordialSeed();
49 void replicate(
int parent_index)
override {
50 *genotype_ = population_->genotypes_[parent_index];
54 void crossover(
int parent1,
int parent2,
float preference)
override {
56 population_->genotypes_[parent1], population_->genotypes_[parent2], preference);
60 void mutate()
override {
66 Population* population_ =
nullptr;
67 GENOTYPE* genotype_ =
nullptr;
70 class GenerationFactory :
public selection::GenerationFactory {
72 GenerationFactory(Population* population, vector<GENOTYPE>& next_generation) {
73 factories_.resize(next_generation.size());
74 for (
size_t i = 0; i < factories_.size(); ++i) {
75 factories_[i].init(population, &next_generation[i]);
79 size_t size()
const override {
return factories_.size(); }
80 GenotypeFactory* operator[](
size_t index)
override {
return &factories_[index]; }
83 vector<GenotypeFactory> factories_;
88 switch (g_config.selection_algorithm.tag()) {
89 case SelectionAlgorithmType::RouletteWheel:
90 selection_algorithm_ = make_unique<selection::RouletteSelection>(
91 g_config.selection_algorithm.roulette_wheel);
93 case SelectionAlgorithmType::CgpIslands:
94 selection_algorithm_ = make_unique<selection::CgpIslandsSelection>(
95 g_config.selection_algorithm.cgp_islands);
97 case SelectionAlgorithmType::Truncation:
98 selection_algorithm_ = make_unique<selection::TruncationSelection>(
99 g_config.selection_algorithm.truncation);
102 FATAL(
"Unexpected selection algorithm type");
106 size_t size()
const override {
return genotypes_.size(); }
108 int generation()
const override {
return generation_; }
110 GENOTYPE* genotype(
size_t index)
override {
return &genotypes_[index]; }
112 const GENOTYPE* genotype(
size_t index)
const override {
return &genotypes_[index]; }
114 void createPrimordialGeneration(
int population_size)
override {
121 genotypes_.resize(population_size);
123 [](
int, GENOTYPE& genotype) { genotype.createPrimordialSeed(); });
125 selection_algorithm_->newPopulation(
this);
129 void createNextGeneration()
override {
133 vector<GENOTYPE> next_generation(genotypes_.size());
134 GenerationFactory generation_factory(
this, next_generation);
135 selection_algorithm_->createNextGeneration(&generation_factory);
136 std::swap(genotypes_, next_generation);
139 vector<size_t> rankingIndex()
const {
140 vector<size_t> ranking_index(genotypes_.size());
141 for (
size_t i = 0; i < ranking_index.size(); ++i) {
142 ranking_index[i] = i;
145 std::sort(ranking_index.begin(), ranking_index.end(), [&](
size_t a,
size_t b) {
146 return genotypes_[a].fitness > genotypes_[b].fitness;
148 return ranking_index;
152 vector<GENOTYPE> genotypes_;
155 unique_ptr<selection::SelectionAlgorithm> selection_algorithm_;
void log(const char *format_string, ARGS &&... args)
Outputs a formatted log message.
Definition: logging.h:45
A population implementation encapsulates the fixed-size set of genotypes, together with the rules for...
Definition: darwin.h:161
Conventional Neuroevolution (CNE) populations.
Definition: brain.h:26
A scope-based Stage wrapper.
Definition: evolution.h:442
Models the genealogy information of a genotype.
Definition: darwin.h:93
void for_each(T &array, const Body &loop_body)
Iterates over an array, with support for parallel execution.
Definition: parallel_for_each.h:55
string genetic_operator
Name of the genetic operator used to create the genotype from its parents.
Definition: darwin.h:95