Preprocessing SOPs given to 'fx' to be D1C-free and SCC-free. Handling the case of non-prime SOPs.

This commit is contained in:
Alan Mishchenko 2013-05-11 17:16:09 -07:00
parent f2abd6b8a9
commit 6610f1c78e
1 changed files with 1 additions and 1 deletions

View File

@ -466,7 +466,7 @@ int Abc_NtkMakeLegit( Abc_Ntk_t * pNtk )
Abc_NtkForEachNode( pNtk, pNode, i )
Counter += Abc_NodeMakeLegit( pNode );
if ( Counter )
Abc_Print( 1, "%d nodes were made dist1-cube-free and/or single-cube-containment-free.\n", Counter );
Abc_Print( 0, "%d nodes were made dist1-cube-free and/or single-cube-containment-free.\n", Counter );
return 1;
}