Femboy_GP/include/lilfbtf/system.h

74 lines
2.1 KiB
C
Raw Normal View History

2024-03-12 16:53:27 -04:00
/*
* <Short Description>
* Copyright (C) 2024 Brett Terpstra
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef LILFBTF5_SYSTEM_H
#define LILFBTF5_SYSTEM_H
#include <lilfbtf/fwddecl.h>
2024-03-19 13:48:44 -04:00
#include <lilfbtf/tree.h>
2024-03-22 11:52:24 -04:00
#include <blt/std/thread.h>
2024-03-19 13:48:44 -04:00
#include <vector>
2024-03-12 16:53:27 -04:00
namespace fb
{
2024-03-15 12:06:47 -04:00
2024-03-23 02:57:01 -04:00
enum class population_init_t
{
GROW, FULL, BRETT_GROW, RAMPED_HALF_HALF, RAMPED_TRI_HALF
};
2024-03-19 13:48:44 -04:00
class gp_population_t
2024-03-15 12:06:47 -04:00
{
2024-03-22 11:52:24 -04:00
private:
blt::thread_pool<true>& pool;
std::vector<tree_t> population;
2024-03-23 02:57:01 -04:00
fb::random& engine;
type_engine_t& types;
2024-03-22 11:52:24 -04:00
void crossover();
void mutate();
2024-03-23 02:57:01 -04:00
2024-03-22 11:52:24 -04:00
public:
2024-03-23 02:57:01 -04:00
explicit gp_population_t(blt::thread_pool<true>& pool, type_engine_t& types, fb::random& engine): pool(pool), engine(engine), types(types)
2024-03-22 11:52:24 -04:00
{}
2024-03-23 02:57:01 -04:00
void init_pop(population_init_t init_type, blt::size_t pop_size, blt::size_t min_depth, blt::size_t max_depth,
std::optional<type_id> starting_type = {}, double terminal_chance = 0.5);
2024-03-22 11:52:24 -04:00
2024-03-23 02:57:01 -04:00
void execute(const individual_eval_func_t& individualEvalFunc, const fitness_eval_func_t& fitnessEvalFunc);
2024-03-22 11:52:24 -04:00
void breed_new_pop();
2024-03-15 12:06:47 -04:00
};
2024-03-19 13:48:44 -04:00
class gp_system_t
{
private:
public:
2024-03-22 11:52:24 -04:00
explicit gp_system_t(type_engine_t& types): types(types)
2024-03-19 13:48:44 -04:00
{}
private:
type_engine_t& types;
};
2024-03-12 16:53:27 -04:00
}
#endif //LILFBTF5_SYSTEM_H