From a53d3d60545e67105a04fe7907e7ae3abff7266f Mon Sep 17 00:00:00 2001 From: Madeline Busig Date: Wed, 7 May 2025 00:06:55 -0700 Subject: [PATCH] Add weighted leafs to group output --- include/fractal.hpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/fractal.hpp b/include/fractal.hpp index 218b536..fd6cdb8 100644 --- a/include/fractal.hpp +++ b/include/fractal.hpp @@ -63,10 +63,12 @@ struct weighted_leaf_t { }; struct group_output_t { + static constexpr size_t g_max_child_wleafs = 8; static constexpr size_t g_max_child_leafs = 16; static constexpr size_t g_max_child_markers = 8; - etl::vector m_child_leafs; + etl::vector m_child_wleafs; + etl::vector m_child_leafs; etl::vector m_child_markers; };