(self, other)
| 64 | __rmul__ = __mul__ |
| 65 | |
| 66 | def __truediv__(self, other): |
| 67 | if not isinstance(other, Dual): |
| 68 | new_duals = [] |
| 69 | for i in self.duals: |
| 70 | new_duals.append(i / other) |
| 71 | return Dual(self.real / other, new_duals) |
| 72 | raise ValueError |
| 73 | |
| 74 | def __floordiv__(self, other): |
| 75 | if not isinstance(other, Dual): |