16template<ProgramType T>
19 if (new_individuals.size() != params.
pop_size
20 && new_individuals.size() != 2*params.
pop_size ) {
21 throw std::runtime_error(
"Individual vector has different number of individuals than pop_size. popsize is "+
to_string(params.
pop_size)+
", number of individuals is " +
to_string(new_individuals.size()));
41 auto delta = idx_end - idx_start;
46 if (new_individuals.size() == 2*params.
pop_size) {
54 for (
int j=0; j< new_individuals.size(); j++) {
55 individuals.at(j) = std::make_shared<Individual<T>>(new_individuals.at(j));
59template<ProgramType T>
77 auto delta = idx_end - idx_start;
86 for (
int i = 0; i< p; ++i)
89 individuals.at(i) = std::make_shared<Individual<T>>();
98template<ProgramType T>
102 if (!filename.empty())
105 out.open(
"population.json");
111 logger.log(
"Saved population to file " + filename, 1);
114template<ProgramType T>
117 std::ifstream indata;
118 indata.open(filename);
125 json j = json::parse(line);
128 logger.log(
"Loaded population from " + filename +
" of size = "
135template<ProgramType T>
141 size_t idx_start = std::floor(island*p/
num_islands);
142 size_t idx_end = std::floor((island+1)*p/
num_islands);
144 auto delta = idx_end - idx_start;
158template<ProgramType T>
162 vector<Individual<T>> new_pop;
166 for (
int k=0; k<survivors.at(j).
size(); ++k){
175 auto delta = idx_end - idx_start;
177 assert(
delta == survivors.at(j).size()
178 &&
" migration ended up with a different popsize");
187 &&
" update ended up with a different popsize");
190 for (
auto ind : new_pop)
201 &&
" number of new individuals is different from pop size");
210template<ProgramType T>
218 output +=
"island " +
to_string(j) +
":\n";
230template<ProgramType T>
236 vector<vector<size_t>> pf_islands;
244 for (
int i=0; i<indices.size(); ++i)
247 if (
individuals.at(indices.at(i))->fitness.rank == rank)
254 pf.resize(std::distance(pf.begin(),it));
255 pf_islands.at(j) = pf;
261template<ProgramType T>
271 vector<size_t> pf(0);
276 for (
int i=0; i<indices.size(); ++i)
278 if (
individuals.at(indices.at(i))->fitness.rank == rank)
279 pf.push_back(indices.at(i));
286 pf.resize(std::distance(pf.begin(),it));
291template<ProgramType T>
300 vector<vector<size_t>> new_island_indexes;
306 new_island_indexes.at(island).resize(0);
309 for (
unsigned int i=0; i<indices.size(); ++i)
313 size_t migrating_idx;
316 iota(other_islands.begin(), other_islands.end(), 0);
319 auto it = other_islands.begin();
320 std::advance(it, island);
321 for (;it != other_islands.end(); ++it) {
326 int other_island = *
r.select_randomly(
327 other_islands.begin(),
328 other_islands.end());
330 migrating_idx = *
r.select_randomly(
334 new_island_indexes.at(island).push_back(migrating_idx);
338 new_island_indexes.at(island).push_back(indices.at(i));
348 vector<Individual<T>> new_pop;
352 for (
int k=0; k<new_island_indexes.at(j).
size(); ++k){
361 auto delta = idx_end - idx_start;
363 assert(
delta == new_island_indexes.at(j).size()
364 &&
" new pop has the wrong number of new individuals");
373 &&
" migration ended up with a different popsize");
376 for (
auto ind : new_pop)
string get_model(string fmt="compact", bool pretty=false)
int size()
returns population size (the effective size of the individuals)
void add_offspring_indexes(int island)
update individual vector size, distributing the expressions in num_islands
void save(string filename)
vector< vector< size_t > > sorted_front(unsigned rank=1)
return complexity-sorted Pareto front indices for each island
vector< std::shared_ptr< Individual< T > > > individuals
void init(SearchSpace &ss, const Parameters ¶ms)
initialize population of programs with a starting model and/or from file
string print_models(string sep="\n")
return population equations.
vector< vector< size_t > > island_indexes
vector< size_t > hall_of_fame(unsigned rank=1)
void load(string filename)
void update(vector< vector< size_t > > survivors)
reduce programs to the indices in survivors. Not thread safe,as it removes elements
#define HANDLE_ERROR_THROW(err)
void to_json(json &j, const Individual< T > &p)
void from_json(const json &j, Individual< T > &p)
string to_string(const T &value)
template function to convert objects to string for logging
< nsga2 selection operator for getting the front
vector< string > objectives
check for same fitness and complexity to filter uniqueness.
Sort each island in increasing complexity. This is not thread safe. I should set complexities of the ...
Holds a search space, consisting of operations and terminals and functions, and methods to sample tha...