Skip to content
Snippets Groups Projects
Commit 80c6be33 authored by Matthieu Schaller's avatar Matthieu Schaller
Browse files

Made the RNG unit tests less expensive to run as they are killing the jenkins suite.

parent fd8a569c
No related branches found
No related tags found
No related merge requests found
......@@ -101,10 +101,10 @@ int main(int argc, char* argv[]) {
srand(seed);
/* Time-step size */
const int time_bin = 29;
const int time_bin = 30;
/* Try a few different values for the ID */
for (int i = 0; i < 20; ++i) {
for (int i = 0; i < 10; ++i) {
const long long id = rand() * (1LL << 31) + rand();
const integertime_t increment = (1LL << time_bin);
......
......@@ -50,7 +50,7 @@ int main(int argc, char* argv[]) {
srand(seed);
/* Time-step size */
const int time_bin = 29;
const int time_bin = 30;
const double boundary[6] = {1e-5, 1e-6, 1e-7, 1e-8, 1e-9, 1e-10};
int count[6] = {0};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment