mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
unit_tests: add more leeway to the "same distribution" check
This is an inherently probabilistic check, which occasionally fails for a matching distribution
This commit is contained in:
parent
6335509727
commit
f81cb4f24b
1 changed files with 2 additions and 2 deletions
|
@ -211,10 +211,10 @@ TEST(select_outputs, same_distribution)
|
||||||
{
|
{
|
||||||
const double diff = (double)output_norm[i] - (double)chain_norm[i];
|
const double diff = (double)output_norm[i] - (double)chain_norm[i];
|
||||||
double dev = fabs(2.0 * diff / (output_norm[i] + chain_norm[i]));
|
double dev = fabs(2.0 * diff / (output_norm[i] + chain_norm[i]));
|
||||||
ASSERT_LT(dev, 0.1);
|
ASSERT_LT(dev, 0.15);
|
||||||
avg_dev += dev;
|
avg_dev += dev;
|
||||||
}
|
}
|
||||||
avg_dev /= 100;
|
avg_dev /= 100;
|
||||||
MDEBUG("avg_dev: " << avg_dev);
|
MDEBUG("avg_dev: " << avg_dev);
|
||||||
ASSERT_LT(avg_dev, 0.015);
|
ASSERT_LT(avg_dev, 0.02);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue