--- 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<I: Instance<X>>(&self, x: I) -> Self::Derivative {
- x.own().into_owned()
+ x.into_owned()
}
}
--- 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<I: Instance<X>>(&self, x: I) -> Self::Codomain {
- x.own().into_owned()
+ x.into_owned()
}
}