Removed generated files, added cache clearing in debug

This commit is contained in:
elvis
2025-10-21 10:04:35 +02:00
parent f1ace24797
commit c3a8941baf
7 changed files with 52 additions and 1813 deletions

View File

@ -27,6 +27,13 @@ pub fn evaluate_node(
let mut to_ret = None;
#[cfg(debug_assertions)]
{
if !to_evaluate.is_empty() {
println!("evaluating nodes {:?}", to_evaluate);
}
}
// for each node to evaluate (in the correct order) finds the output and
// populates the cache
for node_id in to_evaluate {