(x)
| 186 | cell_net.Proto().external_output) |
| 187 | |
| 188 | def unpack_triple(x): |
| 189 | if x: |
| 190 | a, b, c = zip(*x) |
| 191 | return a, b, c |
| 192 | return [], [], [] |
| 193 | |
| 194 | # Splitting to separate lists so we can pass them to c++ |
| 195 | # where we ensemle them back |
no outgoing calls
no test coverage detected
searching dependent graphs…