Skip to content

Commit

Permalink
Relax test tolerance
Browse files Browse the repository at this point in the history
  • Loading branch information
relf committed Feb 10, 2024
1 parent 95f63ce commit 10bb31a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion moe/src/gp_algorithm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1115,7 +1115,7 @@ mod tests {
println!(
"Test predicted derivatives at {xtest}: drv {drv}, true df {df}, fdiff {fdiff}"
);
assert_abs_diff_eq!(err, 0.0, epsilon = 2e-1);
assert_abs_diff_eq!(err, 0.0, epsilon = 2.5e-1);
}
}

Expand Down

0 comments on commit 10bb31a

Please sign in to comment.