Commit ebf10fdc by Alan Mishchenko

Allow delay increase to be negative in 'mfs2'.

parent 8b26084e
...@@ -4657,7 +4657,7 @@ int Abc_CommandMfs2( Abc_Frame_t * pAbc, int argc, char ** argv ) ...@@ -4657,7 +4657,7 @@ int Abc_CommandMfs2( Abc_Frame_t * pAbc, int argc, char ** argv )
} }
pPars->nGrowthLevel = atoi(argv[globalUtilOptind]); pPars->nGrowthLevel = atoi(argv[globalUtilOptind]);
globalUtilOptind++; globalUtilOptind++;
if ( pPars->nGrowthLevel < 0 || pPars->nGrowthLevel > ABC_INFINITY ) if ( pPars->nGrowthLevel < -ABC_INFINITY || pPars->nGrowthLevel > ABC_INFINITY )
goto usage; goto usage;
break; break;
case 'C': case 'C':
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment