Add weighted leafs to group output

This commit is contained in:
Madeline Busig 2025-05-07 00:06:55 -07:00
parent 67170700b8
commit a53d3d6054

View File

@ -63,10 +63,12 @@ struct weighted_leaf_t {
}; };
struct group_output_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_leafs = 16;
static constexpr size_t g_max_child_markers = 8; 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; etl::vector<marker_t, g_max_child_markers> m_child_markers;
}; };