summaryrefslogtreecommitdiffstats
path: root/src/base/abci/abcQbf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/base/abci/abcQbf.c')
-rw-r--r--src/base/abci/abcQbf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/base/abci/abcQbf.c b/src/base/abci/abcQbf.c
index 81c80b13..aa67ad74 100644
--- a/src/base/abci/abcQbf.c
+++ b/src/base/abci/abcQbf.c
@@ -202,9 +202,10 @@ clkV = Abc_Clock() - clkV;
// report the results
if ( fFound )
{
+ int nZeros = Vec_IntCountZero( vPiValues );
printf( "Parameters: " );
Abc_NtkVectorPrintPars( vPiValues, nPars );
- printf( "\n" );
+ printf( " Statistics: 0=%d 1=%d\n", nZeros, Vec_IntSize(vPiValues) - nZeros );
printf( "Solved after %d interations. ", nIters );
}
else if ( nIters == nItersMax )