tree depth calculation

main
Brett 2024-03-19 13:40:14 -04:00
parent 33352171e3
commit dfac3014f4
3 changed files with 63 additions and 7 deletions

View File

@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.25) cmake_minimum_required(VERSION 3.25)
project(lilfbtf5 VERSION 0.1.32) project(lilfbtf5 VERSION 0.1.33)
option(ENABLE_ADDRSAN "Enable the address sanitizer" OFF) option(ENABLE_ADDRSAN "Enable the address sanitizer" OFF)
option(ENABLE_UBSAN "Enable the ub sanitizer" OFF) option(ENABLE_UBSAN "Enable the ub sanitizer" OFF)

View File

@ -139,18 +139,22 @@ namespace fb
tree(tree), engine(info.engine), types(info.types), terminal_chance(info.terminal_chance) tree(tree), engine(info.engine), types(info.types), terminal_chance(info.terminal_chance)
{} {}
}; };
struct tree_eval_t
{
blt::unsafe::any_t value;
type_id contained_type;
};
} }
class tree_t class tree_t
{ {
private: private:
blt::bump_allocator<blt::BLT_2MB_SIZE, false> alloc;
type_engine_t& types;
detail::node_t* root = nullptr;
inline blt::bump_allocator<blt::BLT_2MB_SIZE, false>& get_allocator() inline blt::bump_allocator<blt::BLT_2MB_SIZE, false>& get_allocator()
{ return alloc; } { return alloc; }
void recalculate_cache();
static detail::node_t* allocate_non_terminal(detail::node_construction_info_t info, type_id type); static detail::node_t* allocate_non_terminal(detail::node_construction_info_t info, type_id type);
static detail::node_t* allocate_non_terminal_restricted(detail::node_construction_info_t info, type_id type); static detail::node_t* allocate_non_terminal_restricted(detail::node_construction_info_t info, type_id type);
@ -158,6 +162,7 @@ namespace fb
static detail::node_t* allocate_terminal(detail::node_construction_info_t info, type_id type); static detail::node_t* allocate_terminal(detail::node_construction_info_t info, type_id type);
static void grow(detail::node_construction_info_t info, blt::size_t min_depth, blt::size_t max_depth); static void grow(detail::node_construction_info_t info, blt::size_t min_depth, blt::size_t max_depth);
static void brett_grow(detail::node_construction_info_t info, blt::size_t min_depth, blt::size_t max_depth); static void brett_grow(detail::node_construction_info_t info, blt::size_t min_depth, blt::size_t max_depth);
static void full(detail::node_construction_info_t info, blt::size_t depth); static void full(detail::node_construction_info_t info, blt::size_t depth);
@ -168,7 +173,26 @@ namespace fb
static tree_t make_tree(detail::tree_construction_info_t tree_info, blt::size_t min_depth, blt::size_t max_depth, static tree_t make_tree(detail::tree_construction_info_t tree_info, blt::size_t min_depth, blt::size_t max_depth,
std::optional<type_id> starting_type = {}); std::optional<type_id> starting_type = {});
std::pair<blt::unsafe::any_t, type_id> evaluate(); detail::tree_eval_t evaluate();
blt::size_t depth();
// invalidates the internal cache, as the result of tree modification
inline void invalidate()
{
cache.dirty = true;
}
private:
blt::bump_allocator<blt::BLT_2MB_SIZE, false> alloc;
type_engine_t& types;
detail::node_t* root = nullptr;
struct cache_t
{
blt::size_t depth = 0;
blt::size_t node_count = 0;
bool dirty = true;
} cache;
}; };
} }

View File

@ -63,7 +63,7 @@ namespace fb
return tree; return tree;
} }
std::pair<blt::unsafe::any_t, type_id> tree_t::evaluate() detail::tree_eval_t tree_t::evaluate()
{ {
using detail::node_t; using detail::node_t;
std::stack<node_t*> nodes; std::stack<node_t*> nodes;
@ -258,5 +258,37 @@ namespace fb
} }
} }
blt::size_t tree_t::depth()
{
if (cache.dirty)
recalculate_cache();
return cache.depth;
}
void tree_t::recalculate_cache()
{
using detail::node_t;
blt::size_t depth = 0;
blt::size_t node_count = 0;
std::stack<std::pair<node_t*, std::size_t>> nodes;
nodes.emplace(root, 1);
while (!nodes.empty())
{
auto top = nodes.top();
auto* node = top.first;
auto d = top.second;
node_count++;
depth = std::max(d, depth);
nodes.pop();
for (blt::size_t i = 0; i < node->type.argc(); i++)
nodes.emplace(node->children[i], d + 1);
}
cache.dirty = false;
cache.depth = depth;
cache.node_count = node_count;
}
} }