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,7 +84,8 @@ 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]);