Changing the defaults of command 'collapse'.

This commit is contained in:
Alan Mishchenko 2012-10-25 11:16:11 -07:00
parent 7ecea8d40d
commit 785ae9e4db
1 changed files with 2 additions and 2 deletions

View File

@ -2628,10 +2628,10 @@ int Abc_CommandCollapse( Abc_Frame_t * pAbc, int argc, char ** argv )
pNtk = Abc_FrameReadNtk(pAbc);
// set defaults
fVerbose = 1;
fVerbose = 0;
fReorder = 1;
fDualRail = 0;
fBddSizeMax = 50000000;
fBddSizeMax = ABC_INFINITY;
Extra_UtilGetoptReset();
while ( ( c = Extra_UtilGetopt( argc, argv, "Brdvh" ) ) != EOF )
{