This commit is contained in:
2026-02-13 13:12:01 +01:00
parent 91e5b648b6
commit d4ee28c2e1
4 changed files with 3 additions and 11 deletions

View File

@@ -22,9 +22,3 @@ uint32_t random_range(uint32_t max) {
} while (r >= threshold);
return r % max;
}
void advance_state(uint32_t n) {
for (uint32_t i = 0; i < n; i++) {
random_u32();
}
}