diff -r 4c2e5e65d510 -r f2fc6115b897 src/loc.rs --- a/src/loc.rs Tue Dec 31 23:34:47 2024 -0500 +++ b/src/loc.rs Tue Dec 31 23:49:09 2024 -0500 @@ -706,8 +706,6 @@ impl Linear> for Loc { } impl AXPY> for Loc { - type Owned = Self; - #[inline] fn add_mul>>(mut self, α : F, x : I, β : F) -> Self { self.axpy(α, x, β); @@ -731,7 +729,7 @@ } #[inline] - fn similar_origin(&self) -> Self::Owned { + fn similar_origin(&self) -> Self { Self::ORIGIN }