mirror of
https://github.com/kmc7468/cs420.git
synced 2025-12-16 07:28:52 +00:00
Change initial data range
This commit is contained in:
@@ -12,7 +12,7 @@ void qsort_data_init(int nonce) {
|
||||
int x = nonce;
|
||||
|
||||
for (i = 0; i < 16384; i++) {
|
||||
x = (x * 97 + 17) % 100000009;
|
||||
x = (x * 97 + 17) % 100009;
|
||||
input_qsort_data[i] = x;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user