| 215 | const char kMutationAddNodeError[] = "Mutation::AddNode error: "; |
| 216 | |
| 217 | bool IsTensorIdRegular(const TensorId& tensor_id) { |
| 218 | return tensor_id.index() >= 0; |
| 219 | } |
| 220 | } // namespace |
| 221 | |
| 222 | Mutation::Mutation(MutableGraphView* graph_view) : graph_view_(graph_view) {} |
no test coverage detected