Change initial data range

This commit is contained in:
Minseong Jang
2025-06-12 13:36:46 +09:00
parent b3ad9fca05
commit 49410f5264
3 changed files with 4 additions and 4 deletions

View File

@@ -12,7 +12,7 @@ void rsort_data_init(int nonce) {
int x = nonce;
for (i = 0; i < 2048; i++) {
x = (x * 97 + 17) % 10000007;
x = (x * 97 + 17) % 100007;
input_rsort_data[i] = x;
}
}