Commit e0462d8d by Alan Mishchenko

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

parent df198d2c
...@@ -249,7 +249,8 @@ void Abc_NtkPrintStats( Abc_Ntk_t * pNtk, int fFactored, int fSaveBest, int fDum ...@@ -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," 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 ) if ( fFactored )
Abc_Print( 1," lit(fac) =%6d", Abc_NtkGetLitFactNum(pNtk) ); Abc_Print( 1," lit(fac) =%6d", Abc_NtkGetLitFactNum(pNtk) );
} }
......
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