tune dev

Mon, 01 Sep 2025 23:08:27 -0500

author
Tuomo Valkonen <tuomov@iki.fi>
date
Mon, 01 Sep 2025 23:08:27 -0500
branch
dev
changeset 154
03f34ba55685
parent 153
829c07ea584d
child 155
45d03cf92c23

tune

src/convex.rs file | annotate | diff | comparison | revisions
src/linops.rs file | annotate | diff | comparison | revisions
--- 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()
     }
 }
 

mercurial