| 291 | int64_t numNodes() const { return nodes.size() - freeslots.size(); } |
| 292 | |
| 293 | int64_t numActiveNodes() const { |
| 294 | return nodes.size() - freeslots.size() - numSuboptimal; |
| 295 | } |
| 296 | |
| 297 | bool empty() const { return numActiveNodes() == 0; } |
| 298 | }; |
no test coverage detected