Merge pull request #5652

f81cb4f unit_tests: add more leeway to the 'same distribution' check (moneromooo-monero)
This commit is contained in:
luigi1111 2019-08-15 17:13:18 -05:00
commit 86ee631212
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010
1 changed files with 2 additions and 2 deletions

View File

@ -211,10 +211,10 @@ TEST(select_outputs, same_distribution)
{
const double diff = (double)output_norm[i] - (double)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 /= 100;
MDEBUG("avg_dev: " << avg_dev);
ASSERT_LT(avg_dev, 0.015);
ASSERT_LT(avg_dev, 0.02);
}