From: Fred T. Hamster Date: Thu, 26 Feb 2026 02:05:38 +0000 (-0500) Subject: reduced number of nodes in sym tree test X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=c04b50600e30b5dfcabb6413d009e45171493342;p=feisty_meow.git reduced number of nodes in sym tree test was taking 30 seconds before with 40000 nodes, so dropped to ~4000 nodes and now run time is under 4 seconds. --- diff --git a/nucleus/library/tests_nodes/test_symbol_tree.cpp b/nucleus/library/tests_nodes/test_symbol_tree.cpp index 64e917e0..a3e7aeef 100644 --- a/nucleus/library/tests_nodes/test_symbol_tree.cpp +++ b/nucleus/library/tests_nodes/test_symbol_tree.cpp @@ -44,7 +44,8 @@ using namespace unit_test; //#define DEBUG_TEST_SYMBOL_TREE // how many nodes we add to the tree. -const int MAX_NODES_TESTED = 40000; +//const int MAX_NODES_TESTED = 40000; +const int MAX_NODES_TESTED = 4200; class test_symbol_tree : public unit_base, public application_shell {