reformat remake

This commit is contained in:
NunoSempere 2024-01-13 12:47:56 +01:00
parent 8e2f918dd3
commit 4a4e90f492
16 changed files with 1 additions and 1 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -100,7 +100,7 @@ void sampler_parallel(double (*sampler)(uint64_t* seed), double* results, int n_
}
for (int j = divisor_multiple; j < n_samples; j++) {
results[j] = sampler(&(cache_box[0].seed));
// we can just reuse a seed,
// we can just reuse a seed,
// this isn't problematic because we;ve now stopped doing multithreading
}