| 51 | source_to_path); |
| 52 | |
| 53 | bool IsControlFlowV1Node(const Node* n) { |
| 54 | return (n->IsEnter() || n->IsExit() || n->IsSwitch() || n->IsMerge() || |
| 55 | n->IsNextIteration()); |
| 56 | } |
| 57 | |
| 58 | // TODO(ycao): Add this as Tensorflow Node method. |
| 59 | StatusOr<absl::InlinedVector<const Edge*, 1>> OutputEdgesByIndex(const Node& n, |
no test coverage detected