blt-gp/tests/gp_test_3.cpp

66 lines
2.6 KiB
C++
Raw Normal View History

2024-06-26 20:55:37 -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/>.
*/
#include <blt/gp/program.h>
#include <blt/gp/generators.h>
#include <blt/gp/tree.h>
#include <blt/std/logging.h>
static const auto SEED_FUNC = [] { return std::random_device()(); };
2024-06-26 20:55:37 -04:00
blt::gp::gp_program program(SEED_FUNC); // NOLINT
2024-06-26 20:55:37 -04:00
blt::gp::operation_t add([](float a, float b) { return a + b; });
blt::gp::operation_t sub([](float a, float b) { return a - b; });
blt::gp::operation_t mul([](float a, float b) { return a * b; });
blt::gp::operation_t pro_div([](float a, float b) { return b == 0 ? 0.0f : a / b; });
blt::gp::operation_t op_if([](bool b, float a, float c) {return b ? a : c; });
blt::gp::operation_t eq_f([](float a, float b) {return a == b; });
blt::gp::operation_t eq_b([](bool a, bool b) {return a == b; });
blt::gp::operation_t lt([](float a, float b) {return a < b; });
blt::gp::operation_t gt([](float a, float b) {return a > b; });
blt::gp::operation_t op_and([](bool a, bool b) {return a && b; });
blt::gp::operation_t op_or([](bool a, bool b) {return a || b; });
blt::gp::operation_t op_xor([](bool a, bool b) {return static_cast<bool>(a ^ b); });
blt::gp::operation_t op_not([](bool b) {return !b; });
2024-08-21 20:40:42 -04:00
auto lit = blt::gp::operation_t([]() {
2024-06-26 20:55:37 -04:00
//static std::uniform_real_distribution<float> dist(-32000, 32000);
2024-07-09 21:57:18 -04:00
// static std::uniform_real_distribution<float> dist(0.0f, 10.0f);
2024-08-21 20:40:42 -04:00
return program.get_random().get_float(0.0f, 10.0f);
}).set_ephemeral();
2024-06-26 20:55:37 -04:00
/**
* This is a test using multiple types with blt::gp
*/
int main()
{
blt::gp::operator_builder silly{};
2024-08-21 20:40:42 -04:00
program.set_operations(silly.build(add, sub, mul, pro_div, op_if, eq_f, eq_b, lt, gt, op_and, op_or, op_xor, op_not, lit));
2024-06-26 20:55:37 -04:00
blt::gp::grow_generator_t grow;
blt::gp::tree_t tree{program};
grow.generate(tree, blt::gp::generator_arguments{program, program.get_typesystem().get_type<float>().id(), 3, 7});
2024-06-26 20:55:37 -04:00
auto value = tree.get_evaluation_value<float>();
2024-06-26 20:55:37 -04:00
BLT_TRACE(value);
return 0;
}