* Get the next node for which a flow exists. * @return ID of next node with flow. */
| 181 | * @return ID of next node with flow. |
| 182 | */ |
| 183 | NodeID Next() |
| 184 | { |
| 185 | if (this->it == this->end) return INVALID_NODE; |
| 186 | return this->station_to_node[(this->it++)->second]; |
| 187 | } |
| 188 | }; |
| 189 | |
| 190 | /** |
no outgoing calls
no test coverage detected