Skip to content

Commit f9e4d06

Browse files
committed
Column multiplicity statistics
1 parent 692b0c6 commit f9e4d06

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/base/abci/abcCas.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1463,7 +1463,7 @@ void Abc_NtkLutCascadeFile( char * pFileName, int nVarsOrig, int nLutSize, int n
14631463
printf( "Column multiplicity statistics for %d-rail LUT cascade:\n", nRails );
14641464
for ( i = 0; i < 50; i++ )
14651465
if ( MyuStats[i] )
1466-
printf( " %2d Myu : Function count = %8d (%6.2f %%)\n", i, StageStats[i], 100.0*StageStats[i]/nFuncs );
1466+
printf( " %2d Myu : Function count = %8d (%6.2f %%)\n", i, MyuStats[i], 100.0*MyuStats[i]/nFuncs );
14671467
printf( "Level count statistics for %d-rail LUT cascade:\n", nRails );
14681468
for ( i = 0; i < 50; i++ )
14691469
if ( StageStats[i] )
@@ -1472,7 +1472,7 @@ void Abc_NtkLutCascadeFile( char * pFileName, int nVarsOrig, int nLutSize, int n
14721472
for ( i = 0; i < 50; i++ )
14731473
if ( LutStats[i] )
14741474
printf( " %2d LUT%d : Function count = %8d (%6.2f %%)\n", i, nLutSize, LutStats[i], 100.0*LutStats[i]/nFuncs );
1475-
printf( "Non-decomp : Function count = %8d (%6.2f %%)\n", nFuncs-Sum, 100.0*(nFuncs-Sum)/Abc_MaxInt(1, nFuncs) );
1475+
printf( "Non-decomp : Function count = %8d (%6.2f %%)\n", nFuncs-Sum, 100.0*(nFuncs-Sum)/Abc_MaxInt(1, nFuncs) );
14761476
printf( "Finished %d functions (%.2f LUTs / function; %.2f functions / sec). ",
14771477
nFuncs, 1.0*nTotalLuts/Sum, 1.0*nFuncs/(((double)(Abc_Clock() - clkStart))/((double)CLOCKS_PER_SEC)) );
14781478
Abc_PrintTime( 0, "Total time", Abc_Clock() - clkStart );

0 commit comments

Comments
 (0)