(self)
| 1360 | return self._replace(variable, coords, indexes=indexes) |
| 1361 | |
| 1362 | def __copy__(self) -> Self: |
| 1363 | return self._copy(deep=False) |
| 1364 | |
| 1365 | def __deepcopy__(self, memo: dict[int, Any] | None = None) -> Self: |
| 1366 | return self._copy(deep=True, memo=memo) |