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

101 lines
3.4 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-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/tree.h>
#include <blt/gp/stack.h>
2024-06-02 21:27:00 -04:00
namespace blt::gp
{
2024-06-21 22:04:57 -04:00
class gp_program
{
public:
2024-06-21 22:04:57 -04:00
explicit gp_program(type_system system): system(std::move(system))
{}
2024-06-21 22:04:57 -04:00
template<typename Return, typename... Args>
void add_operator(const operation_t<Return(Args...)>& op)
{
2024-06-21 22:04:57 -04:00
auto return_type_id = system.get_type<Return>().id();
auto& operator_list = op.get_argc() == 0 ? terminals : non_terminals;
operator_list[return_type_id].push_back(operators.size());
auto operator_index = operators.size();
(argument_types[operator_index].push_back(system.get_type<Args>()), ...);
operators.push_back(op.make_callable());
}
2024-06-21 22:04:57 -04:00
[[nodiscard]] inline type_system& get_typesystem()
{
2024-06-21 22:04:57 -04:00
return system;
}
2024-06-21 22:04:57 -04:00
void generate_tree();
2024-06-19 14:12:04 -04:00
2024-06-21 22:04:57 -04:00
inline operator_id select_terminal(type_id id, std::mt19937_64& engine)
2024-06-19 14:12:04 -04:00
{
2024-06-21 22:04:57 -04:00
std::uniform_int_distribution<blt::size_t> dist(0, terminals[id].size() - 1);
return terminals[id][dist(engine)];
2024-06-19 14:12:04 -04:00
}
2024-06-21 22:04:57 -04:00
inline operator_id select_non_terminal(type_id id, std::mt19937_64& engine)
2024-06-19 14:12:04 -04:00
{
2024-06-21 22:04:57 -04:00
std::uniform_int_distribution<blt::size_t> dist(0, non_terminals[id].size() - 1);
return non_terminals[id][dist(engine)];
2024-06-19 14:12:04 -04:00
}
2024-06-21 22:04:57 -04:00
inline std::vector<type>& get_argument_types(operator_id id)
2024-06-19 14:12:04 -04:00
{
2024-06-21 22:04:57 -04:00
return argument_types[id];
2024-06-19 14:12:04 -04:00
}
private:
type_system system;
blt::gp::stack_allocator alloc;
// indexed from return TYPE ID, returns index of operator
2024-06-21 22:04:57 -04:00
blt::expanding_buffer<std::vector<operator_id>> terminals;
blt::expanding_buffer<std::vector<operator_id>> non_terminals;
// indexed from OPERATOR ID (operator number)
blt::expanding_buffer<std::vector<type>> argument_types;
2024-06-19 14:12:04 -04:00
std::vector<std::function<void(stack_allocator&)>> operators;
};
2024-06-02 21:27:00 -04:00
}
#endif //BLT_GP_PROGRAM_H