| 460 | } |
| 461 | |
| 462 | const binary_partition *binary_partition::right_tree() const { |
| 463 | assert(!is_leaf()); |
| 464 | return right.get(); |
| 465 | } |
| 466 | |
| 467 | void split_by_binarytree(grid_volume gvol, std::vector<grid_volume> &result_gvs, |
| 468 | std::vector<int> &result_ids, const binary_partition *bp) { |
no test coverage detected