Define a struct for queue entries
| 249 | |
| 250 | // Define a struct for queue entries |
| 251 | struct QueueEntry { |
| 252 | int node_idx; |
| 253 | int start; |
| 254 | int end; |
| 255 | }; |
| 256 | |
| 257 | // Queue for breadth-first traversal |
| 258 | std::queue<QueueEntry> node_queue; |
nothing calls this directly
no outgoing calls
no test coverage detected