| 1595 | } |
| 1596 | |
| 1597 | void AddCtrlEdge(const Scope& scope, Operation a, Operation b) { |
| 1598 | scope.graph()->AddControlEdge(a.node(), b.node()); |
| 1599 | } |
| 1600 | |
| 1601 | void AddCtrlEdge(const Scope& scope, Output a, Operation b) { |
| 1602 | AddCtrlEdge(scope, a.op(), b); |
no test coverage detected