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-19 21:44:00 -04:00
|
|
|
|
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>
|
2024-06-06 00:50:44 -04:00
|
|
|
#include <iostream>
|
2024-06-19 21:44:00 -04:00
|
|
|
#include <random>
|
2024-06-21 22:04:57 -04:00
|
|
|
|
2024-06-19 21:44:00 -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>
|
2024-06-19 21:44:00 -04:00
|
|
|
#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
|
2024-06-06 00:50:44 -04:00
|
|
|
{
|
|
|
|
public:
|
2024-06-23 14:13:50 -04:00
|
|
|
explicit gp_program(type_system& system, std::mt19937_64 engine): system(system), engine(engine)
|
2024-06-06 00:50:44 -04:00
|
|
|
{}
|
|
|
|
|
2024-06-21 22:04:57 -04:00
|
|
|
[[nodiscard]] inline type_system& get_typesystem()
|
2024-06-06 00:50:44 -04:00
|
|
|
{
|
2024-06-21 22:04:57 -04:00
|
|
|
return system;
|
2024-06-06 00:50:44 -04:00
|
|
|
}
|
|
|
|
|
2024-06-21 22:04:57 -04:00
|
|
|
void generate_tree();
|
2024-06-19 14:12:04 -04:00
|
|
|
|
2024-06-23 14:13:50 -04:00
|
|
|
inline std::mt19937_64& get_random()
|
2024-06-19 14:12:04 -04:00
|
|
|
{
|
2024-06-23 14:13:50 -04:00
|
|
|
return engine;
|
2024-06-19 14:12:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2024-06-23 14:13:50 -04:00
|
|
|
type_system& system;
|
2024-06-19 21:44:00 -04:00
|
|
|
blt::gp::stack_allocator alloc;
|
2024-06-23 14:13:50 -04:00
|
|
|
std::mt19937_64 engine;
|
2024-06-19 14:12:04 -04:00
|
|
|
};
|
2024-06-02 21:27:00 -04:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif //BLT_GP_PROGRAM_H
|