| 33 | class SimpleTestGraph : public GraphInfo { |
| 34 | public: |
| 35 | explicit SimpleTestGraph(int node_index_offset = 0) |
| 36 | : node_index_offset_(node_index_offset) { |
| 37 | for (int i = 0; i < node_index_offset; ++i) AddNode({}, {}); |
| 38 | } |
| 39 | |
| 40 | ~SimpleTestGraph() override { |
| 41 | for (auto& node : nodes_) { |