| 278 | } |
| 279 | |
| 280 | Operator* GetFirstOpWithInput(const Model& model, const string& array_name) { |
| 281 | auto it = FindOpWithInput(model, array_name); |
| 282 | return it == model.operators.end() ? nullptr : it->get(); |
| 283 | } |
| 284 | |
| 285 | void ReplaceArrayUsage(Model* model, const string& old_array_name, |
| 286 | const string& new_array_name) { |
no test coverage detected