From 56212609cd0713a32a9e21776f1113860cf516fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johanna=20S=C3=B6rng=C3=A5rd?= Date: Sat, 5 Oct 2024 14:54:24 +0200 Subject: [PATCH] Remove now false comment --- src/lib.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 3a35f27..0aecd55 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -378,10 +378,6 @@ pub trait LambertW { fn lambert_wm1(self) -> Self::Output; } -// The large epsilon in the examples in the below impl blocks -// is set to let the tests pass when the `estrin` feature is enabled, -// since the CI runner may not have fused multiply-add instructions. - #[cfg(feature = "24bits")] impl LambertW for f32 { type Output = Self;