Commit efe5d147 by Alan Mishchenko

Adding stand-alone cut computation to GIA.

parent 70b11df9
...@@ -631,7 +631,7 @@ void Gia_StoComputeCuts( Gia_Man_t * pGia ) ...@@ -631,7 +631,7 @@ void Gia_StoComputeCuts( Gia_Man_t * pGia )
printf( "Cut/Node = %.2f ", p->CutCount[3] / Gia_ManAndNum(p->pGia) ); printf( "Cut/Node = %.2f ", p->CutCount[3] / Gia_ManAndNum(p->pGia) );
printf( "\n" ); printf( "\n" );
printf( "The number of nodes with cut count over the limit (%d cuts) = %d nodes (out of %d). ", printf( "The number of nodes with cut count over the limit (%d cuts) = %d nodes (out of %d). ",
p->nCutSize, p->nCutsOver, Gia_ManAndNum(pGia) ); p->nCutNum, p->nCutsOver, Gia_ManAndNum(pGia) );
Abc_PrintTime( 0, "Time", Abc_Clock() - p->clkStart ); Abc_PrintTime( 0, "Time", Abc_Clock() - p->clkStart );
} }
Gia_StoFree( p ); Gia_StoFree( p );
......
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