blt-gp/include/blt/gp/program.h

468 lines
18 KiB
C
Raw Normal View History

2024-06-02 21:27:00 -04:00
#pragma once
/*
* 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 BLT_GP_PROGRAM_H
#define BLT_GP_PROGRAM_H
2024-06-04 21:52:43 -04:00
#include <cstddef>
2024-06-02 21:27:00 -04:00
#include <functional>
#include <type_traits>
2024-06-03 02:29:51 -04:00
#include <string_view>
#include <string>
#include <utility>
#include <iostream>
#include <random>
2024-06-29 10:47:27 -04:00
#include <algorithm>
#include <memory>
2024-06-21 22:04:57 -04:00
#include <blt/std/ranges.h>
#include <blt/std/hashmap.h>
#include <blt/std/types.h>
#include <blt/std/utility.h>
#include <blt/std/memory.h>
#include <blt/gp/fwdecl.h>
2024-06-21 22:04:57 -04:00
#include <blt/gp/typesystem.h>
#include <blt/gp/operations.h>
#include <blt/gp/transformers.h>
2024-06-21 22:04:57 -04:00
#include <blt/gp/tree.h>
#include <blt/gp/stack.h>
2024-06-02 21:27:00 -04:00
namespace blt::gp
{
2024-06-24 21:56:51 -04:00
struct argc_t
{
blt::u32 argc = 0;
blt::u32 argc_context = 0;
[[nodiscard]] bool is_terminal() const
{
return argc == 0;
}
2024-06-24 21:56:51 -04:00
};
2024-06-30 03:20:56 -04:00
struct operator_info
{
// types of the arguments
std::vector<type_id> argument_types;
// return type of this operator
type_id return_type;
// number of arguments for this operator
argc_t argc;
// function to call this operator
detail::callable_t function;
// function used to transfer values between stacks
detail::transfer_t transfer;
2024-06-30 03:20:56 -04:00
};
2024-06-29 10:47:27 -04:00
struct operator_storage
{
// indexed from return TYPE ID, returns index of operator
blt::expanding_buffer<std::vector<operator_id>> terminals;
blt::expanding_buffer<std::vector<operator_id>> non_terminals;
2024-06-29 14:03:57 -04:00
blt::expanding_buffer<std::vector<std::pair<operator_id, blt::size_t>>> operators_ordered_terminals;
2024-06-29 10:47:27 -04:00
// indexed from OPERATOR ID (operator number)
blt::hashset_t<operator_id> static_types;
std::vector<operator_info> operators;
std::vector<detail::print_func_t> print_funcs;
std::vector<std::optional<std::string_view>> names;
2024-06-29 10:47:27 -04:00
};
template<typename Context = detail::empty_t>
2024-06-29 10:47:27 -04:00
class operator_builder
{
friend class gp_program;
2024-06-24 21:56:51 -04:00
2024-06-24 14:00:08 -04:00
friend class blt::gp::detail::operator_storage_test;
public:
2024-06-29 10:47:27 -04:00
explicit operator_builder(type_provider& system): system(system)
{}
template<typename ArgType, typename Return, typename... Args>
operator_builder& add_operator(const operation_t<ArgType, Return(Args...)>& op, bool is_static = false)
{
auto return_type_id = system.get_type<Return>().id();
2024-06-29 10:47:27 -04:00
auto operator_id = blt::gp::operator_id(storage.operators.size());
2024-06-29 10:47:27 -04:00
auto& operator_list = op.get_argc() == 0 ? storage.terminals : storage.non_terminals;
operator_list[return_type_id].push_back(operator_id);
operator_info info;
2024-06-24 21:56:51 -04:00
if constexpr (sizeof...(Args) > 0)
{
(add_non_context_argument<Args>(info.argument_types), ...);
2024-06-24 21:56:51 -04:00
}
info.argc.argc_context = info.argc.argc = sizeof...(Args);
info.return_type = system.get_type<Return>().id();
2024-06-24 21:56:51 -04:00
((std::is_same_v<detail::remove_cv_ref<Args>, Context> ? info.argc.argc -= 1 : (blt::size_t) nullptr), ...);
2024-06-24 21:56:51 -04:00
BLT_ASSERT(info.argc.argc_context - info.argc.argc <= 1 && "Cannot pass multiple context as arguments!");
2024-06-24 21:56:51 -04:00
info.function = op.template make_callable<Context>();
info.transfer = [](std::optional<std::reference_wrapper<stack_allocator>> to, stack_allocator& from) {
#if BLT_DEBUG_LEVEL >= 3
auto value = from.pop<Return>();
//BLT_TRACE_STREAM << value << "\n";
if (to){
to->get().push(value);
}
#else
if (to)
{
to->get().push(from.pop<Return>());
} else
{
from.pop<Return>();
}
#endif
};
storage.operators.push_back(info);
storage.print_funcs.push_back([](std::ostream& out, stack_allocator& stack) {
out << stack.pop<Return>();
});
storage.names.push_back(op.get_name());
if (is_static)
2024-06-29 10:47:27 -04:00
storage.static_types.insert(operator_id);
2024-06-24 21:56:51 -04:00
return *this;
}
2024-06-29 10:47:27 -04:00
operator_storage&& build()
{
blt::hashset_t<type_id> has_terminals;
for (const auto& v : blt::enumerate(storage.terminals))
{
if (!v.second.empty())
has_terminals.insert(v.first);
}
for (const auto& op_r : blt::enumerate(storage.non_terminals))
{
if (op_r.second.empty())
continue;
auto return_type = op_r.first;
std::vector<std::pair<operator_id, blt::size_t>> ordered_terminals;
for (const auto& op : op_r.second)
{
// count number of terminals
blt::size_t terminals = 0;
for (const auto& type : storage.operators[op].argument_types)
2024-06-29 10:47:27 -04:00
{
if (has_terminals.contains(type))
2024-06-29 10:47:27 -04:00
terminals++;
}
ordered_terminals.emplace_back(op, terminals);
}
2024-06-29 14:03:57 -04:00
bool found_terminal_inputs = false;
bool matches_argc = false;
2024-06-29 10:47:27 -04:00
for (const auto& terms : ordered_terminals)
{
if (terms.second == storage.operators[terms.first].argc.argc)
2024-06-29 14:03:57 -04:00
matches_argc = true;
2024-06-29 10:47:27 -04:00
if (terms.second != 0)
2024-06-29 14:03:57 -04:00
found_terminal_inputs = true;
if (matches_argc && found_terminal_inputs)
2024-06-29 10:47:27 -04:00
break;
}
2024-06-29 14:03:57 -04:00
if (!found_terminal_inputs)
BLT_ABORT(("Failed to find function with terminal arguments for return type " + std::to_string(return_type)).c_str());
if (!matches_argc)
2024-06-29 10:47:27 -04:00
{
2024-06-29 14:03:57 -04:00
BLT_ABORT(("Failed to find a function which purely translates types "
"(that is all input types are terminals) for return type " + std::to_string(return_type)).c_str());
2024-06-29 10:47:27 -04:00
}
std::sort(ordered_terminals.begin(), ordered_terminals.end(), [](const auto& a, const auto& b) {
return a.second > b.second;
});
2024-06-29 14:03:57 -04:00
auto first_size = *ordered_terminals.begin();
auto iter = ordered_terminals.begin();
while (++iter != ordered_terminals.end() && iter->second == first_size.second)
{}
ordered_terminals.erase(iter, ordered_terminals.end());
storage.operators_ordered_terminals[return_type] = ordered_terminals;
2024-06-29 10:47:27 -04:00
}
return std::move(storage);
}
private:
2024-06-26 20:24:58 -04:00
template<typename T>
void add_non_context_argument(decltype(operator_info::argument_types)& types)
2024-06-26 20:24:58 -04:00
{
if constexpr (!std::is_same_v<Context, detail::remove_cv_ref<T>>)
{
types.push_back(system.get_type<T>().id());
2024-06-26 20:24:58 -04:00
}
}
2024-06-29 10:47:27 -04:00
type_provider& system;
operator_storage storage;
};
2024-06-21 22:04:57 -04:00
class gp_program
{
public:
struct config_t
{
blt::size_t population_size = 500;
blt::size_t initial_min_tree_size = 3;
blt::size_t initial_max_tree_size = 10;
std::reference_wrapper<mutation_t> mutator;
std::reference_wrapper<crossover_t> crossover;
std::reference_wrapper<population_initializer_t> pop_initializer;
// default config (ramped half-and-half init) or for buildering
config_t();
// default config with a user specified initializer
config_t(const std::reference_wrapper<population_initializer_t>& popInitializer); // NOLINT
config_t(size_t populationSize, size_t initialMinTreeSize, size_t initialMaxTreeSize);
config_t(size_t populationSize, size_t initialMinTreeSize, size_t initialMaxTreeSize,
const std::reference_wrapper<population_initializer_t>& popInitializer);
config_t(size_t populationSize, size_t initialMinTreeSize, size_t initialMaxTreeSize,
const std::reference_wrapper<mutation_t>& mutator, const std::reference_wrapper<crossover_t>& crossover,
const std::reference_wrapper<population_initializer_t>& popInitializer);
config_t& set_pop_size(blt::size_t pop)
{
population_size = pop;
return *this;
}
config_t& set_initial_min_tree_size(blt::size_t size)
{
initial_min_tree_size = size;
return *this;
}
config_t& set_initial_max_tree_size(blt::size_t size)
{
initial_max_tree_size = size;
return *this;
}
config_t& set_crossover(crossover_t& ref)
{
crossover = ref;
return *this;
}
config_t& set_mutation(mutation_t& ref)
{
mutator = ref;
return *this;
}
config_t& set_initializer(population_initializer_t& ref)
{
pop_initializer = ref;
return *this;
}
};
/**
* Note about context size: This is required as context is passed to every operator in the GP tree, this context will be provided by your
* call to one of the evaluator functions. This was the nicest way to provide this as C++ lacks reflection
*
* @param system type system to use in tree generation
* @param engine random engine to use throughout the program. TODO replace this with something better
* @param context_size number of arguments which are always present as "context" to the GP system / operators
*/
2024-06-29 10:47:27 -04:00
explicit gp_program(type_provider& system, std::mt19937_64 engine):
system(system), engine(engine)
{}
explicit gp_program(type_provider& system, std::mt19937_64 engine, config_t config):
system(system), engine(engine), config(config)
{}
void generate_population(type_id root_type);
/**
* takes in a lambda for the fitness evaluation function (must return a value convertable to double)
* The lambda must accept a tree for evaluation, container for evaluation context, and a index into that container (current tree)
*
* Container must be concurrently accessible from multiple threads using operator[]
*
* NOTE: 0 is considered the best, in terms of standardized and adjusted fitness
*/
template<typename Return, typename Class, typename Container, typename Lambda = Return(Class::*)(tree_t, Container, blt::size_t) const>
void evaluate_fitness(Lambda&& fitness_function, Container& result_storage)
{
for (const auto& ind : blt::enumerate(current_pop.getIndividuals()))
ind.second.raw_fitness = static_cast<double>(fitness_function(ind.second.tree, result_storage, ind.first));
double min = 0;
for (auto& ind : current_pop.getIndividuals())
{
if (ind.raw_fitness < min)
min = ind.raw_fitness;
}
double overall_fitness = 0;
double best_fitness = 2;
double worst_fitness = 0;
individual* best = nullptr;
individual* worst = nullptr;
auto diff = -min;
for (auto& ind : current_pop.getIndividuals())
{
ind.standardized_fitness = ind.raw_fitness + diff;
ind.adjusted_fitness = 1.0 / (1.0 + ind.standardized_fitness);
if (ind.adjusted_fitness > worst_fitness)
{
worst_fitness = ind.adjusted_fitness;
worst = &ind;
}
if (ind.adjusted_fitness < best_fitness)
{
best_fitness = ind.adjusted_fitness;
best = &ind;
}
overall_fitness += ind.adjusted_fitness;
}
current_stats = {overall_fitness, overall_fitness / static_cast<double>(config.population_size), best_fitness, worst_fitness, best,
worst};
}
void next_generation()
{
current_pop = next_pop;
current_generation++;
}
[[nodiscard]] inline std::mt19937_64& get_random()
{
return engine;
}
2024-06-24 21:56:51 -04:00
[[nodiscard]] inline bool choice()
{
static std::uniform_int_distribution dist(0, 1);
return dist(engine);
}
/**
* @param cutoff percent in floating point form chance of the event happening.
2024-06-24 21:56:51 -04:00
* @return
*/
[[nodiscard]] inline bool choice(double cutoff)
{
static std::uniform_real_distribution dist(0.0, 1.0);
return dist(engine) < cutoff;
}
2024-06-29 10:47:27 -04:00
[[nodiscard]] inline type_provider& get_typesystem()
{
2024-06-21 22:04:57 -04:00
return system;
}
inline operator_id select_terminal(type_id id)
{
2024-06-29 14:03:57 -04:00
// we wanted a terminal, but could not find one, so we will select from a function that has a terminal
if (storage.terminals[id].empty())
return select_non_terminal_too_deep(id);
2024-06-29 10:47:27 -04:00
std::uniform_int_distribution<blt::size_t> dist(0, storage.terminals[id].size() - 1);
return storage.terminals[id][dist(engine)];
}
2024-06-19 14:12:04 -04:00
inline operator_id select_non_terminal(type_id id)
2024-06-19 14:12:04 -04:00
{
2024-06-29 10:47:27 -04:00
std::uniform_int_distribution<blt::size_t> dist(0, storage.non_terminals[id].size() - 1);
return storage.non_terminals[id][dist(engine)];
}
2024-06-29 14:03:57 -04:00
inline operator_id select_non_terminal_too_deep(type_id id)
{
std::uniform_int_distribution<blt::size_t> dist(0, storage.operators_ordered_terminals[id].size() - 1);
return storage.operators_ordered_terminals[id][dist(engine)].first;
}
2024-06-27 03:01:39 -04:00
inline operator_info& get_operator_info(operator_id id)
{
return storage.operators[id];
}
inline detail::print_func_t& get_print_func(operator_id id)
{
return storage.print_funcs[id];
}
inline std::optional<std::string_view> get_name(operator_id id)
{
return storage.names[id];
}
inline std::vector<operator_id>& get_type_terminals(type_id id)
{
2024-06-29 10:47:27 -04:00
return storage.terminals[id];
}
inline std::vector<operator_id>& get_type_non_terminals(type_id id)
{
2024-06-29 10:47:27 -04:00
return storage.non_terminals[id];
}
inline bool is_static(operator_id id)
{
2024-06-29 10:47:27 -04:00
return storage.static_types.contains(static_cast<blt::size_t>(id));
}
2024-06-29 10:47:27 -04:00
inline void set_operations(operator_storage&& op)
{
2024-06-29 10:47:27 -04:00
storage = std::move(op);
2024-06-19 14:12:04 -04:00
}
private:
2024-06-29 10:47:27 -04:00
type_provider& system;
blt::gp::stack_allocator alloc;
2024-06-29 10:47:27 -04:00
operator_storage storage;
population_t current_pop;
population_stats current_stats;
population_t next_pop;
blt::size_t current_generation = 0;
2024-06-29 10:47:27 -04:00
std::mt19937_64 engine;
config_t config;
2024-06-19 14:12:04 -04:00
};
2024-06-02 21:27:00 -04:00
}
#endif //BLT_GP_PROGRAM_H