Reduce test cases in sort_replace

This commit is contained in:
Rodrigo Arias 2023-03-24 15:27:58 +01:00 committed by Rodrigo Arias Mallo
parent 5b64737ad9
commit 30812e134e

View File

@ -85,10 +85,11 @@ test_sort_replace(void)
{
int64_t nmin = 2;
int64_t nmax = 300;
int64_t nrun = 500;
int64_t nstep = 5;
int64_t nrun = 50;
srand(123);
for (int64_t n = nmin; n <= nmax; n++) {
for (int64_t n = nmin; n <= nmax; n += nstep) {
for (int64_t run = 0; run < nrun; run++)
test_case(n, run);
err("n = %ld OK", n);