| 200 | } |
| 201 | |
| 202 | std::vector<const NodeDef*> ComputeTransitiveFanin( |
| 203 | const GraphDef& graph, const std::vector<string>& terminal_nodes) { |
| 204 | bool ill_formed = false; |
| 205 | std::vector<const NodeDef*> result = |
| 206 | ComputeTransitiveFanin(graph, terminal_nodes, &ill_formed); |
| 207 | CHECK(!ill_formed); |
| 208 | return result; |
| 209 | } |
| 210 | |
| 211 | std::vector<const NodeDef*> ComputeTransitiveFanin( |
| 212 | const GraphDef& graph, const std::vector<string>& terminal_nodes, |
no test coverage detected