Skip to content

Commit

Permalink
Fix IDENTICAL_VARIANCE_SHIFT
Browse files Browse the repository at this point in the history
  • Loading branch information
ehmicky committed Dec 19, 2021
1 parent c25176b commit 9e6b455
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stats/variance.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ const getIdenticalSumDeviation = function (mean) {
// one.
// A higher value makes identical measures end too early.
// A lower value makes benchmarks slower.
export const IDENTICAL_VARIANCE_SHIFT = 1e-2
export const IDENTICAL_VARIANCE_SHIFT = 5e-2

// Retrieve variance of an array of floats (cannot be NaN/Infinity).
// Array must not be empty.
Expand Down

0 comments on commit 9e6b455

Please sign in to comment.