blt-gp/tests/evaluation_tests.cpp

150 lines
3.9 KiB
C++
Raw Permalink Normal View History

2024-07-23 21:33:20 -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/std/logging.h>
#include <blt/gp/tree.h>
#include <blt/gp/operations.h>
#include <blt/gp/generators.h>
#include <blt/gp/program.h>
#include <random>
static const auto SEED_FUNC = [] { return std::random_device()(); };
2024-07-23 21:33:20 -04:00
struct large_256
{
blt::u8 data[256];
};
struct large_2048
{
blt::u8 data[2048];
};
// not actually 4096 but will fill the whole page (4096)
struct large_4096
{
blt::u8 data[4096];
2024-07-23 21:33:20 -04:00
};
struct large_6123
{
blt::u8 data[6123];
};
struct large_18290
{
blt::u8 data[18290];
};
2024-08-03 19:51:38 -04:00
large_18290 base{};
blt::gp::gp_program program{SEED_FUNC};
2024-07-23 21:33:20 -04:00
blt::gp::op_container_t make_container(blt::gp::operator_id id)
{
auto& info = program.get_operator_info(id);
return {program.get_typesystem().get_type(info.return_type).size(), id, false};
2024-07-23 21:33:20 -04:00
}
blt::gp::op_container_t make_value(const blt::gp::type& id)
{
2024-08-21 20:40:42 -04:00
return {id.size(), 0, true};
2024-07-23 21:33:20 -04:00
}
2024-08-03 19:51:38 -04:00
blt::gp::operation_t add([](float a, float b) {
2024-07-23 21:33:20 -04:00
return a + b;
});
2024-08-03 19:51:38 -04:00
blt::gp::operation_t sub([](float a, float b) {
return a - b;
});
2024-07-23 21:33:20 -04:00
blt::gp::operation_t basic_2t([](float a, bool b) {
return b ? a : 0.0f;
});
2024-08-03 19:51:38 -04:00
blt::gp::operation_t cross_large_type([](const large_18290& input, const float a, const float b) {
BLT_TRACE("%f, %f", a, b);
large_18290 output{};
for (const auto& [index, ref] : blt::enumerate(input.data))
{
if (ref > static_cast<blt::u8>(a) && ref < static_cast<blt::u8>(b))
output.data[index] = ref;
}
return output;
});
2024-07-23 21:33:20 -04:00
blt::gp::operation_t f_literal([]() {
return 555.0f;
2024-07-23 21:33:20 -04:00
});
blt::gp::operation_t b_literal([]() {
return false;
});
2024-08-03 19:51:38 -04:00
blt::gp::operation_t large_literal([]() {
return base;
});
2024-07-23 21:33:20 -04:00
void basic_tree()
{
BLT_INFO("Testing if we can get a basic tree going.");
2024-08-21 20:40:42 -04:00
blt::gp::tree_t tree{program};
2024-07-23 21:33:20 -04:00
2024-08-03 19:51:38 -04:00
tree.get_operations().push_back(make_container(sub.id));
tree.get_operations().push_back(make_value(program.get_typesystem().get_type<float>()));
tree.get_operations().push_back(make_value(program.get_typesystem().get_type<float>()));
2024-08-03 19:51:38 -04:00
tree.get_values().push(50.0f);
tree.get_values().push(120.0f);
2024-07-23 21:33:20 -04:00
auto val = tree.get_evaluation_value<float>();
2024-07-23 21:33:20 -04:00
BLT_TRACE(val);
2024-08-03 19:51:38 -04:00
BLT_ASSERT(val == (120 - 50));
}
void large_cross_type_tree()
{
2024-08-21 20:40:42 -04:00
blt::gp::tree_t tree{program};
2024-08-03 19:51:38 -04:00
auto& ops = tree.get_operations();
auto& vals = tree.get_values();
ops.push_back(make_container(cross_large_type.id));
ops.push_back(make_container(sub.id));
ops.push_back(make_value(program.get_typesystem().get_type<float>()));
ops.push_back(make_value(program.get_typesystem().get_type<float>()));
ops.push_back(make_value(program.get_typesystem().get_type<float>()));
ops.push_back(make_container(large_literal.id));
2024-08-03 19:51:38 -04:00
vals.push(50.0f);
vals.push(120.0f);
vals.push(5555.0f);
auto val = tree.get_evaluation_value<large_18290>();
2024-08-03 19:51:38 -04:00
blt::black_box(val);
2024-07-23 21:33:20 -04:00
}
int main()
{
2024-08-03 19:51:38 -04:00
for (auto& v : base.data)
v = static_cast<blt::u8>(blt::random::murmur_random64c(691, std::numeric_limits<blt::u8>::min(), std::numeric_limits<blt::u8>::max()));
blt::gp::operator_builder builder{};
2024-08-21 20:40:42 -04:00
program.set_operations(builder.build(f_literal, b_literal, add, basic_2t, sub, large_literal, cross_large_type));
2024-07-23 21:33:20 -04:00
basic_tree();
2024-08-03 19:51:38 -04:00
large_cross_type_tree();
2024-07-23 21:33:20 -04:00
}