# HG changeset patch # User Tuomo Valkonen # Date 1756786107 18000 # Node ID 03f34ba556854b53e2441453a091c81bfd2ce1b7 # Parent 829c07ea584d14290041a499bddb429561ca8717 tune diff -r 829c07ea584d -r 03f34ba55685 src/convex.rs --- a/src/convex.rs Mon Sep 01 23:08:01 2025 -0500 +++ b/src/convex.rs Mon Sep 01 23:08:27 2025 -0500 @@ -415,7 +415,7 @@ type Derivative = X::Owned; fn differential_impl>(&self, x: I) -> Self::Derivative { - x.own().into_owned() + x.into_owned() } } diff -r 829c07ea584d -r 03f34ba55685 src/linops.rs --- a/src/linops.rs Mon Sep 01 23:08:01 2025 -0500 +++ b/src/linops.rs Mon Sep 01 23:08:27 2025 -0500 @@ -200,7 +200,7 @@ type Codomain = X::OwnedSpace; fn apply>(&self, x: I) -> Self::Codomain { - x.own().into_owned() + x.into_owned() } }