(self)
| 219 | return self.operands[type(self)._parameters.index(key)] |
| 220 | |
| 221 | def dependencies(self): |
| 222 | # Dependencies are `Expr` operands only |
| 223 | return [operand for operand in self.operands if isinstance(operand, Expr)] |
| 224 | |
| 225 | def _task(self, key: Key, index: int) -> Task: |
| 226 | """The task for the i'th partition |
no outgoing calls
no test coverage detected