return the control outputs of op.
(self, op)
| 379 | return self._control_outputs |
| 380 | |
| 381 | def get(self, op): |
| 382 | """return the control outputs of op.""" |
| 383 | if op in self._control_outputs: |
| 384 | return self._control_outputs[op] |
| 385 | else: |
| 386 | return () |
| 387 | |
| 388 | @property |
| 389 | def graph(self): |
no outgoing calls
no test coverage detected