Helper function to check tree invariants
(tree: BPlusTreeMap)
| 25 | |
| 26 | |
| 27 | def check_invariants(tree: BPlusTreeMap) -> bool: |
| 28 | """Helper function to check tree invariants""" |
| 29 | checker = BPlusTreeInvariantChecker(tree.capacity) |
| 30 | return checker.check_invariants(tree.root, tree.leaves) |
| 31 | |
| 32 | |
| 33 | class BPlusTreeFuzzTester: |
no test coverage detected