19 #include <core/darwin.h> 29 vector<int> genotypes;
35 size_t size()
const override {
return genotypes_.
size(); }
37 int generation()
const override {
return generation_; }
39 Genotype* genotype(
size_t index)
override {
return &genotypes_[index]; }
40 const Genotype* genotype(
size_t index)
const override {
return &genotypes_[index]; }
42 vector<size_t> rankingIndex()
const override;
43 void createPrimordialGeneration(
int population_size)
override;
44 void createNextGeneration()
override;
47 void classicSelection();
52 void assignSpecies(
int index);
55 vector<Genotype> genotypes_;
56 vector<Species> species_;
57 atomic<Innovation> next_innovation_ = 0;
virtual size_t size() const =0
The fixed number of genotypes in the population.
A population implementation encapsulates the fixed-size set of genotypes, together with the rules for...
Definition: darwin.h:161
NeuroEvolution of Augmenting Topologies (NEAT)
Definition: brain.cpp:20