Fix GCC compiler warning
parent
2923eafaca
commit
dfd790930c
|
@ -173,8 +173,8 @@ void TestRandom::testPcgRandomNormalDist()
|
||||||
UASSERT(ubound <= max);
|
UASSERT(ubound <= max);
|
||||||
|
|
||||||
int accum = 0;
|
int accum = 0;
|
||||||
for (int i = lbound; i != ubound; i++)
|
for (int j = lbound; j != ubound; j++)
|
||||||
accum += bins[i - min];
|
accum += bins[j - min];
|
||||||
|
|
||||||
float actual = (float)accum / num_samples;
|
float actual = (float)accum / num_samples;
|
||||||
UASSERT(fabs(actual - prediction_intervals[i]) < 0.02);
|
UASSERT(fabs(actual - prediction_intervals[i]) < 0.02);
|
||||||
|
|
Loading…
Reference in New Issue