Add weighted leafs to group output

This commit is contained in:
Maddie Busig 2025-05-07 00:06:55 -07:00
parent f1afeacf60
commit 1dfac53904

View File

@ -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<weighted_leaf_t, g_max_child_leafs> m_child_leafs;
etl::vector<weighted_leaf_t, g_max_child_wleafs> m_child_wleafs;
etl::vector<leaf_t, g_max_child_leafs> m_child_leafs;
etl::vector<marker_t, g_max_child_markers> m_child_markers;
};