Remove Tree Checks
Note
Available from version 0.16.2 onwards
When constructing trees, there are a few checks done that slow down performance. This slowness will be more apparent with very large trees. The checks are to
- Check parent/children data type
- Check for loops (expensive for trees that are deep as it checks the ancestors of node)
These checks are enabled by default. To turn off these checks, you can set environment variable before importing bigtree
.