Allow delay increase to be negative in 'mfs2'.

This commit is contained in:
Alan Mishchenko 2014-05-31 12:03:35 -07:00
parent 8b26084e3c
commit ebf10fdc33
1 changed files with 1 additions and 1 deletions

View File

@ -4657,7 +4657,7 @@ int Abc_CommandMfs2( Abc_Frame_t * pAbc, int argc, char ** argv )
}
pPars->nGrowthLevel = atoi(argv[globalUtilOptind]);
globalUtilOptind++;
if ( pPars->nGrowthLevel < 0 || pPars->nGrowthLevel > ABC_INFINITY )
if ( pPars->nGrowthLevel < -ABC_INFINITY || pPars->nGrowthLevel > ABC_INFINITY )
goto usage;
break;
case 'C':