| 3562 | } |
| 3563 | |
| 3564 | struct SubTree |
| 3565 | { |
| 3566 | SubTree() : first(0), last(0), nodeIdx(0), depth(0) {} |
| 3567 | SubTree(int _first, int _last, int _nodeIdx, int _depth) |
| 3568 | : first(_first), last(_last), nodeIdx(_nodeIdx), depth(_depth) {} |
| 3569 | int first; |
| 3570 | int last; |
| 3571 | int nodeIdx; |
| 3572 | int depth; |
| 3573 | }; |
| 3574 | |
| 3575 | |
| 3576 | static float |