You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tree node deletion is currently linearly recursive in Merk. This means that if we were to delete elements in a certain way, it would delete the top node, then have a recursive callback to delete the next tree node and so forth. If we deleted a significant amount of tree nodes all of these calls would stay on the stack and would lead to a stack overflow.
The text was updated successfully, but these errors were encountered:
Tree node deletion is currently linearly recursive in Merk. This means that if we were to delete elements in a certain way, it would delete the top node, then have a recursive callback to delete the next tree node and so forth. If we deleted a significant amount of tree nodes all of these calls would stay on the stack and would lead to a stack overflow.
The text was updated successfully, but these errors were encountered: