run 100k random rounds by default

This commit is contained in:
Radim Kolar 2024-07-08 12:32:28 +02:00
parent f908c5bd2a
commit 058bbd0ea4

View File

@ -84,13 +84,14 @@ static void print_bitcount(void)
int main(int argc,const char *argv[])
{
rounds=20000;
/* 100k rounds by default */
rounds=100000;
if(argc>1)
{
rounds=atoi(argv[1]);
}
printf("Running %d rounds.\n\n",rounds);
printf("Running %d rounds.\n\n", rounds);
result=0;
#ifdef HAVE_SRANDOMDEV