2024-06-02 13:38:24 -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 <iostream>
|
2024-06-03 02:29:51 -04:00
|
|
|
#include <blt/gp/program.h>
|
2024-06-03 14:18:17 -04:00
|
|
|
#include <variant>
|
|
|
|
#include <stack>
|
|
|
|
#include <deque>
|
|
|
|
#include <vector>
|
|
|
|
#include <random>
|
|
|
|
|
2024-06-06 02:25:42 -04:00
|
|
|
//// small scale
|
2024-06-19 14:12:04 -04:00
|
|
|
enum class op
|
|
|
|
{
|
|
|
|
ADD,
|
|
|
|
SUB,
|
|
|
|
MUL,
|
|
|
|
DIV,
|
|
|
|
LIT
|
|
|
|
};
|
|
|
|
|
|
|
|
std::string to_string(op o)
|
|
|
|
{
|
|
|
|
switch (o)
|
|
|
|
{
|
|
|
|
case op::ADD:
|
|
|
|
return "ADD";
|
|
|
|
case op::SUB:
|
|
|
|
return "SUB";
|
|
|
|
case op::MUL:
|
|
|
|
return "MUL";
|
|
|
|
case op::DIV:
|
|
|
|
return "DIV";
|
|
|
|
case op::LIT:
|
|
|
|
return "LIT";
|
|
|
|
}
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
constexpr static long SEED = 41912;
|
|
|
|
|
|
|
|
op generate_op()
|
|
|
|
{
|
|
|
|
static std::mt19937_64 engine(SEED);
|
|
|
|
static std::uniform_int_distribution dist(0, static_cast<int>(op::LIT) - 1);
|
|
|
|
return static_cast<op>(dist(engine));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool choice()
|
|
|
|
{
|
|
|
|
static std::mt19937_64 engine(SEED);
|
|
|
|
static std::uniform_int_distribution dist(0, 1);
|
|
|
|
return dist(engine);
|
|
|
|
}
|
|
|
|
|
|
|
|
float random_value()
|
|
|
|
{
|
|
|
|
static std::mt19937_64 engine(SEED);
|
|
|
|
static std::uniform_real_distribution dist(0.0f, 10.0f);
|
|
|
|
return dist(engine);
|
|
|
|
}
|
|
|
|
|
|
|
|
void test()
|
|
|
|
{
|
|
|
|
std::vector<op> operations;
|
|
|
|
std::vector<float> values;
|
2024-06-19 21:44:00 -04:00
|
|
|
|
2024-06-19 14:12:04 -04:00
|
|
|
std::stack<op> tree_generator;
|
|
|
|
tree_generator.push(generate_op());
|
2024-06-19 21:44:00 -04:00
|
|
|
|
2024-06-19 14:12:04 -04:00
|
|
|
while (!tree_generator.empty())
|
|
|
|
{
|
|
|
|
auto opn = tree_generator.top();
|
|
|
|
tree_generator.pop();
|
2024-06-19 21:44:00 -04:00
|
|
|
|
2024-06-19 14:12:04 -04:00
|
|
|
operations.push_back(opn);
|
|
|
|
if (opn == op::LIT)
|
|
|
|
{
|
|
|
|
values.push_back(random_value());
|
|
|
|
continue;
|
|
|
|
}
|
2024-06-19 21:44:00 -04:00
|
|
|
|
2024-06-19 14:12:04 -04:00
|
|
|
// child 1
|
|
|
|
if (choice())
|
|
|
|
tree_generator.push(generate_op());
|
|
|
|
else
|
|
|
|
tree_generator.push(op::LIT);
|
2024-06-19 21:44:00 -04:00
|
|
|
|
2024-06-19 14:12:04 -04:00
|
|
|
// child 2
|
|
|
|
if (choice())
|
|
|
|
tree_generator.push(generate_op());
|
|
|
|
else
|
|
|
|
tree_generator.push(op::LIT);
|
|
|
|
}
|
2024-06-19 21:44:00 -04:00
|
|
|
|
2024-06-21 22:04:57 -04:00
|
|
|
// print out the tree / operators
|
2024-06-19 14:12:04 -04:00
|
|
|
for (const auto& v : operations)
|
|
|
|
std::cout << to_string(v) << " ";
|
|
|
|
std::cout << std::endl;
|
2024-06-19 21:44:00 -04:00
|
|
|
|
2024-06-19 14:12:04 -04:00
|
|
|
{
|
|
|
|
std::stack<blt::size_t> process;
|
|
|
|
for (const auto& v : operations)
|
|
|
|
{
|
|
|
|
switch (v)
|
|
|
|
{
|
|
|
|
case op::ADD:
|
|
|
|
case op::SUB:
|
|
|
|
case op::MUL:
|
|
|
|
case op::DIV:
|
|
|
|
process.emplace(2);
|
|
|
|
std::cout << "(";
|
|
|
|
break;
|
|
|
|
case op::LIT:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
std::cout << to_string(v);
|
|
|
|
while (!process.empty())
|
|
|
|
{
|
|
|
|
auto top = process.top();
|
|
|
|
process.pop();
|
|
|
|
if (top == 0)
|
|
|
|
{
|
|
|
|
std::cout << ")";
|
|
|
|
continue;
|
|
|
|
} else
|
|
|
|
{
|
|
|
|
std::cout << " ";
|
|
|
|
process.push(top - 1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
while (!process.empty())
|
|
|
|
{
|
|
|
|
auto top = process.top();
|
|
|
|
process.pop();
|
|
|
|
if (top == 0)
|
|
|
|
{
|
|
|
|
std::cout << ") ";
|
|
|
|
continue;
|
|
|
|
} else
|
|
|
|
{
|
|
|
|
std::cerr << "FUCK YOU\n";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
std::cout << std::endl;
|
|
|
|
}
|
2024-06-19 21:44:00 -04:00
|
|
|
|
2024-06-19 14:12:04 -04:00
|
|
|
for (const auto& v : values)
|
|
|
|
std::cout << v << " ";
|
|
|
|
std::cout << std::endl;
|
2024-06-19 21:44:00 -04:00
|
|
|
|
2024-06-19 14:12:04 -04:00
|
|
|
{
|
|
|
|
std::stack<blt::size_t> process;
|
|
|
|
blt::size_t index = 0;
|
|
|
|
for (const auto& v : operations)
|
|
|
|
{
|
|
|
|
switch (v)
|
|
|
|
{
|
|
|
|
case op::ADD:
|
|
|
|
case op::SUB:
|
|
|
|
case op::MUL:
|
|
|
|
case op::DIV:
|
|
|
|
process.emplace(2);
|
|
|
|
std::cout << "(";
|
|
|
|
std::cout << to_string(v);
|
|
|
|
break;
|
|
|
|
case op::LIT:
|
|
|
|
std::cout << values[index++];
|
|
|
|
break;
|
|
|
|
}
|
2024-06-19 21:44:00 -04:00
|
|
|
|
2024-06-19 14:12:04 -04:00
|
|
|
while (!process.empty())
|
|
|
|
{
|
|
|
|
auto top = process.top();
|
|
|
|
process.pop();
|
|
|
|
if (top == 0)
|
|
|
|
{
|
|
|
|
std::cout << ")";
|
|
|
|
continue;
|
|
|
|
} else
|
|
|
|
{
|
|
|
|
std::cout << " ";
|
|
|
|
process.push(top - 1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
while (!process.empty())
|
|
|
|
{
|
|
|
|
auto top = process.top();
|
|
|
|
process.pop();
|
|
|
|
if (top == 0)
|
|
|
|
{
|
|
|
|
std::cout << ") ";
|
|
|
|
continue;
|
|
|
|
} else
|
|
|
|
{
|
|
|
|
std::cerr << "FUCK YOU\n";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
std::cout << std::endl;
|
|
|
|
}
|
2024-06-19 21:44:00 -04:00
|
|
|
|
2024-06-19 14:12:04 -04:00
|
|
|
std::stack<float> process;
|
|
|
|
std::stack<op> operators;
|
2024-06-19 21:44:00 -04:00
|
|
|
|
2024-06-19 14:12:04 -04:00
|
|
|
for (const auto& v : operations)
|
|
|
|
operators.push(v);
|
2024-06-19 21:44:00 -04:00
|
|
|
|
2024-06-19 14:12:04 -04:00
|
|
|
while (!operators.empty())
|
|
|
|
{
|
|
|
|
auto oper = operators.top();
|
|
|
|
operators.pop();
|
|
|
|
if (oper == op::LIT)
|
|
|
|
{
|
|
|
|
process.push(values.back());
|
|
|
|
values.pop_back();
|
|
|
|
} else
|
|
|
|
{
|
|
|
|
auto v1 = process.top();
|
|
|
|
process.pop();
|
|
|
|
auto v2 = process.top();
|
|
|
|
process.pop();
|
|
|
|
std::cout << "processing oper " << to_string(oper) << " with values " << v1 << " " << v2 << std::endl;
|
|
|
|
switch (oper)
|
|
|
|
{
|
|
|
|
case op::ADD:
|
|
|
|
values.push_back(v1 + v2);
|
|
|
|
operators.push(op::LIT);
|
|
|
|
break;
|
|
|
|
case op::SUB:
|
|
|
|
values.push_back(v1 - v2);
|
|
|
|
operators.push(op::LIT);
|
|
|
|
break;
|
|
|
|
case op::MUL:
|
|
|
|
values.push_back(v1 * v2);
|
|
|
|
operators.push(op::LIT);
|
|
|
|
break;
|
|
|
|
case op::DIV:
|
|
|
|
if (v2 == 0)
|
|
|
|
v2 = 1;
|
|
|
|
values.push_back(v1 / v2);
|
|
|
|
operators.push(op::LIT);
|
|
|
|
break;
|
|
|
|
case op::LIT:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
std::cout << "\tresult: " << values.back() << std::endl;
|
|
|
|
}
|
|
|
|
}
|
2024-06-19 21:44:00 -04:00
|
|
|
|
2024-06-19 14:12:04 -04:00
|
|
|
std::cout << process.size() << std::endl;
|
|
|
|
std::cout << process.top() << std::endl;
|
2024-06-19 21:44:00 -04:00
|
|
|
|
2024-06-19 14:12:04 -04:00
|
|
|
}
|
2024-06-03 14:18:17 -04:00
|
|
|
|
2024-06-19 21:44:00 -04:00
|
|
|
blt::gp::type_system type_system;
|
|
|
|
blt::gp::gp_program program(type_system);
|
2024-06-21 22:04:57 -04:00
|
|
|
std::random_device dev;
|
|
|
|
std::mt19937_64 engine{dev()};
|
2024-06-19 21:44:00 -04:00
|
|
|
|
2024-06-20 02:27:23 -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; });
|
2024-06-21 22:04:57 -04:00
|
|
|
blt::gp::operation_t lit([]() {
|
|
|
|
static std::uniform_real_distribution<float> dist(-32000, 32000);
|
|
|
|
return dist(engine);
|
|
|
|
});
|
2024-06-03 14:18:17 -04:00
|
|
|
|
2024-06-02 13:38:24 -04:00
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
2024-06-19 21:44:00 -04:00
|
|
|
type_system.register_type<float>();
|
|
|
|
type_system.register_type<bool>();
|
2024-06-20 02:27:23 -04:00
|
|
|
|
|
|
|
program.add_operator(add);
|
|
|
|
program.add_operator(sub);
|
|
|
|
program.add_operator(mul);
|
|
|
|
program.add_operator(pro_div);
|
|
|
|
program.add_operator(lit);
|
2024-06-19 21:44:00 -04:00
|
|
|
|
2024-06-06 02:25:42 -04:00
|
|
|
// constexpr blt::size_t MAX_ALIGNMENT = 8;
|
|
|
|
// test();
|
|
|
|
// std::cout << alignof(silly) << " " << sizeof(silly) << std::endl;
|
|
|
|
// std::cout << alignof(super_large) << " " << sizeof(super_large) << " " << ((sizeof(super_large) + (MAX_ALIGNMENT - 1)) & ~(MAX_ALIGNMENT - 1))
|
|
|
|
// << std::endl;
|
|
|
|
// std::cout << ((sizeof(char) + (MAX_ALIGNMENT - 1)) & ~(MAX_ALIGNMENT - 1)) << " "
|
|
|
|
// << ((sizeof(short) + (MAX_ALIGNMENT - 1)) & ~(MAX_ALIGNMENT - 1)) << std::endl;
|
|
|
|
// std::cout << ((sizeof(int) + (MAX_ALIGNMENT - 1)) & ~(MAX_ALIGNMENT - 1)) << " " << ((sizeof(long) + (MAX_ALIGNMENT - 1)) & ~(MAX_ALIGNMENT - 1))
|
|
|
|
// << std::endl;
|
|
|
|
// std::cout << alignof(void*) << " " << sizeof(void*) << std::endl;
|
|
|
|
// std::cout << blt::type_string<decltype(&"SillString")>() << std::endl;
|
|
|
|
//
|
|
|
|
// alloc.push(50);
|
|
|
|
// alloc.push(550.3f);
|
|
|
|
// alloc.push(20.1230345);
|
|
|
|
// alloc.push(true);
|
|
|
|
// alloc.push(false);
|
|
|
|
// alloc.push(std::string("SillyString"));
|
|
|
|
// alloc.push(&"SillyString");
|
|
|
|
//
|
|
|
|
// std::cout << std::endl;
|
|
|
|
// std::cout << *alloc.pop<decltype(&"SillString")>() << std::endl;
|
|
|
|
// std::cout << alloc.pop<std::string>() << std::endl;
|
|
|
|
// std::cout << alloc.pop<bool>() << std::endl;
|
|
|
|
// std::cout << alloc.pop<bool>() << std::endl;
|
|
|
|
// std::cout << alloc.pop<double>() << std::endl;
|
|
|
|
// std::cout << alloc.pop<float>() << std::endl;
|
|
|
|
// std::cout << alloc.pop<int>() << std::endl;
|
|
|
|
// std::cout << std::endl;
|
|
|
|
//
|
|
|
|
// std::cout << "Is empty? " << alloc.empty() << std::endl;
|
|
|
|
// alloc.push(silly{});
|
|
|
|
// alloc.push(large{});
|
|
|
|
// alloc.push(super_large{});
|
|
|
|
// alloc.push(silly{25, 24});
|
|
|
|
// alloc.push(large{});
|
|
|
|
//
|
|
|
|
// std::cout << std::endl;
|
|
|
|
// std::cout << "Is empty? " << alloc.empty() << std::endl;
|
|
|
|
// alloc.pop<large>();
|
|
|
|
// std::cout << "Is empty? " << alloc.empty() << std::endl;
|
|
|
|
// std::cout << alloc.pop<silly>() << std::endl;
|
|
|
|
// std::cout << "Is empty? " << alloc.empty() << std::endl;
|
|
|
|
// alloc.pop<super_large>();
|
|
|
|
// std::cout << "Is empty? " << alloc.empty() << std::endl;
|
|
|
|
// alloc.pop<large>();
|
|
|
|
// std::cout << "Is empty? " << alloc.empty() << std::endl;
|
|
|
|
// std::cout << alloc.pop<silly>() << std::endl;
|
|
|
|
// std::cout << std::endl;
|
|
|
|
//
|
|
|
|
// std::cout << "Is empty? " << alloc.empty() << " bytes left: " << alloc.bytes_in_head() << std::endl;
|
|
|
|
// std::cout << std::endl;
|
|
|
|
//
|
|
|
|
// alloc.push(silly{2, 5});
|
|
|
|
// alloc.push(large{});
|
|
|
|
// alloc.push(super_large{});
|
|
|
|
// alloc.push(silly{80, 10});
|
|
|
|
// alloc.push(large{});
|
|
|
|
// alloc.push(50);
|
|
|
|
// alloc.push(550.3f);
|
|
|
|
// alloc.push(20.1230345);
|
|
|
|
// alloc.push(std::string("SillyString"));
|
2024-06-19 21:44:00 -04:00
|
|
|
// alloc.push(33.22f);
|
|
|
|
// alloc.push(120);
|
|
|
|
// alloc.push(true);
|
|
|
|
//
|
|
|
|
// blt::gp::operation_t<float(float, int, bool)> silly_op(nyah);
|
|
|
|
// blt::gp::operation_t<float(float, float)> silly_op_2([](float f, float g) {
|
|
|
|
// return f + g;
|
|
|
|
// });
|
|
|
|
|
|
|
|
// std::cout << silly_op(alloc) << std::endl;
|
|
|
|
//
|
|
|
|
// std::cout << "Is empty? " << alloc.empty() << std::endl;
|
2024-06-06 02:25:42 -04:00
|
|
|
|
|
|
|
// std::cout << std::endl;
|
|
|
|
//
|
|
|
|
// //auto* pointer = static_cast<void*>(head->metadata.offset);
|
|
|
|
// //return std::align(alignment, bytes, pointer, remaining_bytes);
|
|
|
|
//
|
|
|
|
// float f = 10.5;
|
|
|
|
// int i = 412;
|
|
|
|
// bool b = true;
|
|
|
|
//
|
|
|
|
// std::array<void*, 3> arr{reinterpret_cast<void*>(&f), reinterpret_cast<void*>(&i), reinterpret_cast<void*>(&b)};
|
|
|
|
//
|
|
|
|
// blt::span<void*, 3> spv{arr};
|
|
|
|
//
|
|
|
|
// std::cout << silly_op.operator()(spv) << std::endl;
|
2024-06-03 02:29:51 -04:00
|
|
|
|
2024-06-06 02:25:42 -04:00
|
|
|
//std::cout << "Hello World!" << std::endl;
|
2024-06-02 13:38:24 -04:00
|
|
|
}
|