(self)
| 215 | return out |
| 216 | |
| 217 | def build_out(self): |
| 218 | bases = self.domain.bases |
| 219 | if any(bases): |
| 220 | return self.future_type(dist=self.dist, bases=bases, tensorsig=self.tensorsig, dtype=self.dtype, name=str(self)) |
| 221 | else: |
| 222 | return self.future_type(dist=self.dist, tensorsig=self.tensorsig, dtype=self.dtype, name=str(self)) |
| 223 | |
| 224 | def attempt(self, id=None): |
| 225 | """Recursively attempt to evaluate operation.""" |
no outgoing calls
no test coverage detected