Skip to content

Commit

Permalink
Make 32 bit impl les stringent to pass CI when estrin is enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
JSorngard committed Oct 5, 2024
1 parent 7d3807f commit b6b3307
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ impl LambertW for f32 {
/// # use approx::assert_abs_diff_eq;
/// use lambert_w::LambertW;
///
/// assert_abs_diff_eq!((-1e-30).lambert_wm1(), -73.37311, epsilon = 1e-5);
/// assert_abs_diff_eq!((-1e-30).lambert_wm1(), -73.37311, epsilon = 1e-4);
/// ```
#[inline]
fn lambert_wm1(self) -> Self::Output {
Expand Down

0 comments on commit b6b3307

Please sign in to comment.