From 12c7dbfe40917598472faf86f061feabbbd589ad Mon Sep 17 00:00:00 2001 From: Brett Laptop Date: Wed, 31 Jan 2024 11:00:00 -0500 Subject: [PATCH] push --- include/gp.h | 7 +------ src/gp.cpp | 11 ++++++++++- src/main.cpp | 3 +-- 3 files changed, 12 insertions(+), 9 deletions(-) diff --git a/include/gp.h b/include/gp.h index dd6d6b0..f5276e7 100644 --- a/include/gp.h +++ b/include/gp.h @@ -75,12 +75,7 @@ struct node void evaluate(); - void evaluate_tree() - { - for (size_t i = 0; i < argc; i++) - sub_nodes[i]->evaluate_tree(); - evaluate(); - } + void evaluate_tree(); void printTree() { diff --git a/src/gp.cpp b/src/gp.cpp index b6582a1..c14bdeb 100644 --- a/src/gp.cpp +++ b/src/gp.cpp @@ -21,6 +21,7 @@ #include #include #include +#include blt::area_allocator node_allocator; @@ -211,4 +212,12 @@ node* node::clone() // tee hee ::new(np) node(*this); return np; -} \ No newline at end of file +} + +void node::evaluate_tree() +{ + //std::stack> silly; + for (size_t i = 0; i < argc; i++) + sub_nodes[i]->evaluate_tree(); + evaluate(); +} diff --git a/src/main.cpp b/src/main.cpp index 2240502..9750d94 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -213,7 +213,7 @@ class tree float fitness() { auto& img = root->getImage(); - return eval_DNF_SW(img) * eval_DNF_SW_1(img) * static_cast(depth(root.get())); + return eval_DNF_SW(img) * eval_DNF_SW_1(img) * static_cast(std::min(depth(root.get()), 5ul)); } void printTree() @@ -446,7 +446,6 @@ void update(std::int32_t w, std::int32_t h) ImGui::Text("Physical Memory Usage: %s", blt::string::fromBytes(data.resident).c_str()); ImGui::Text("Shared Memory Usage: %s", blt::string::fromBytes(data.shared).c_str()); ImGui::Text("Total Memory Usage: %s", blt::string::fromBytes(data.size).c_str()); - ImGui::Text("Stack Usage?: %s", blt::string::fromBytes(data.data - data.text - data.resident).c_str()); auto lw = 512.0f; auto lh = 512.0f;