(self)
| 60 | return f"Variable({self.value})" |
| 61 | |
| 62 | def to_ndarray(self) -> np.ndarray: |
| 63 | return self.value |
| 64 | |
| 65 | def __add__(self, other: Variable) -> Variable: |
| 66 | result = Variable(self.value + other.value) |
no outgoing calls
no test coverage detected