Commit bc65461c by Alan Mishchenko

Experiments with Boolean functions.

parent 5bb6d456
...@@ -417,7 +417,7 @@ void Dtt_PrintMulti( Dtt_Man_t * p ) ...@@ -417,7 +417,7 @@ void Dtt_PrintMulti( Dtt_Man_t * p )
break; break;
printf( "n=%2d : ", n ); printf( "n=%2d : ", n );
printf( "All = %7d ", Count ); printf( "All = %7d ", Count );
printf( "Ave = %3d ", Total/Count ); printf( "Ave = %6.2f ", 1.0*Total/Count );
for ( i = 0; i < 11; i++ ) for ( i = 0; i < 11; i++ )
if ( Counts[n][i] ) if ( Counts[n][i] )
printf( "%6d", Counts[n][i] ); printf( "%6d", Counts[n][i] );
......
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