| 106 | } |
| 107 | |
| 108 | bool IsOutputArray(const Model& model, const string& array_name) { |
| 109 | for (const auto& output_array : model.flags.output_arrays()) { |
| 110 | if (array_name == output_array) { |
| 111 | return true; |
| 112 | } |
| 113 | } |
| 114 | return false; |
| 115 | } |
| 116 | |
| 117 | bool IsArrayConsumed(const Model& model, const string& name) { |
| 118 | if (GetOpWithInput(model, name)) { |
no outgoing calls
no test coverage detected