run 100k random rounds by default
This commit is contained in:
parent
f908c5bd2a
commit
058bbd0ea4
|
|
@ -84,13 +84,14 @@ static void print_bitcount(void)
|
||||||
|
|
||||||
int main(int argc,const char *argv[])
|
int main(int argc,const char *argv[])
|
||||||
{
|
{
|
||||||
rounds=20000;
|
/* 100k rounds by default */
|
||||||
|
rounds=100000;
|
||||||
if(argc>1)
|
if(argc>1)
|
||||||
{
|
{
|
||||||
rounds=atoi(argv[1]);
|
rounds=atoi(argv[1]);
|
||||||
}
|
}
|
||||||
|
|
||||||
printf("Running %d rounds.\n\n",rounds);
|
printf("Running %d rounds.\n\n", rounds);
|
||||||
|
|
||||||
result=0;
|
result=0;
|
||||||
#ifdef HAVE_SRANDOMDEV
|
#ifdef HAVE_SRANDOMDEV
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user