| 445 | bool binary_partition::is_leaf() const { return !left && !right; } |
| 446 | |
| 447 | int binary_partition::get_proc_id() const { |
| 448 | assert(is_leaf()); |
| 449 | return proc_id; |
| 450 | } |
| 451 | |
| 452 | const split_plane &binary_partition::get_plane() const { |
| 453 | assert(!is_leaf()); |
no outgoing calls
no test coverage detected