Disable a test as it is not consistent between compilers.

This commit is contained in:
Godzil
2020-03-02 17:41:04 +00:00
parent 1cebcd4f8b
commit 478b1f0af1
6 changed files with 48 additions and 31 deletions

View File

@@ -62,4 +62,9 @@ double max3(double a, double b, double c)
if (c > b) return c;
}
return b;
}
double frand()
{
return rand() / ((double) RAND_MAX);
}