| 38 | } |
| 39 | |
| 40 | ~SimpleTestGraph() override { |
| 41 | for (auto& node : nodes_) { |
| 42 | TfLiteIntArrayFree(node.inputs); |
| 43 | TfLiteIntArrayFree(node.outputs); |
| 44 | } |
| 45 | } |
| 46 | |
| 47 | size_t num_nodes() const override { |
| 48 | return nodes_.size() - node_index_offset_; |
nothing calls this directly
no test coverage detected