Skip to content

Commit

Permalink
Lower test epsilon to 1e-3
Browse files Browse the repository at this point in the history
  • Loading branch information
Beinsezii committed Dec 24, 2023
1 parent d044a13 commit 45ec2a9
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 @@ -1054,7 +1054,7 @@ mod tests {
}

fn func_cmp(input: &[[f32; 3]], reference: &[[f32; 3]], function: extern "C" fn(&mut [f32; 3])) {
func_cmp_eps(input, reference, function, 1e-4)
func_cmp_eps(input, reference, function, 1e-3)
}

#[test]
Expand Down

0 comments on commit 45ec2a9

Please sign in to comment.