(self, other)
| 74 | self._reset(var) |
| 75 | |
| 76 | def _reset(self, other): |
| 77 | if not isinstance(other, Tensor): |
| 78 | other = VarNode(other) |
| 79 | super()._reset(other) |
| 80 | self.owner = None |
| 81 | |
| 82 | def _reset_var(self, var): |
| 83 | origin_owner = self.owner |
no test coverage detected