(operators)
| 211 | |
| 212 | |
| 213 | def RunOperatorsOnce(operators): |
| 214 | for op in operators: |
| 215 | success = RunOperatorOnce(op) |
| 216 | if not success: |
| 217 | return False |
| 218 | return True |
| 219 | |
| 220 | |
| 221 | def ClearGlobalNetObserver(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…