Skip to content

Commit

Permalink
Increase euler test precision.
Browse files Browse the repository at this point in the history
  • Loading branch information
bitshifter committed Jul 7, 2024
1 parent 9a77f4a commit 9e16153
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/euler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@ trait EulerEpsilon {
}
impl EulerEpsilon for f32 {
const Q_EPS: f32 = 1e-5;
// TODO: sse2 impl passes with 1e-5 but scalar-math does not, why?
const E_EPS: f32 = 2e-4;
const E_EPS: f32 = 1e-5;
}

impl EulerEpsilon for f64 {
Expand Down

0 comments on commit 9e16153

Please sign in to comment.