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; };