diff -r 6be459f08b66 -r 943c6b3b9414 src/norms.rs --- a/src/norms.rs Wed Apr 30 00:48:56 2025 -0500 +++ b/src/norms.rs Wed Apr 30 01:06:25 2025 -0500 @@ -176,13 +176,13 @@ } } -impl> Norm> for E { +impl + Normed> Norm> for E { fn norm(&self, huber: HuberL1) -> F { huber.apply(self.norm2_squared()) } } -impl> Dist> for E { +impl + Normed> Dist> for E { fn dist>(&self, other: I, huber: HuberL1) -> F { huber.apply(self.dist2_squared(other)) }