Adding print-out of SOP literals with 'ps -f'.

This commit is contained in:
Alan Mishchenko 2013-04-19 09:35:30 -07:00
parent df198d2cef
commit e0462d8d2e
1 changed files with 2 additions and 1 deletions

View File

@ -249,7 +249,8 @@ void Abc_NtkPrintStats( Abc_Ntk_t * pNtk, int fFactored, int fSaveBest, int fDum
{
Abc_Print( 1," cube =%6d", Abc_NtkGetCubeNum(pNtk) );
// Abc_Print( 1," lit(sop) = %5d", Abc_NtkGetLitNum(pNtk) );
if ( fFactored )
Abc_Print( 1," lit(sop) =%6d", Abc_NtkGetLitNum(pNtk) );
if ( fFactored )
Abc_Print( 1," lit(fac) =%6d", Abc_NtkGetLitFactNum(pNtk) );
}