summaryrefslogtreecommitdiffstats
path: root/src/base/abci/abcQbf.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2015-06-23 20:48:24 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2015-06-23 20:48:24 -0700
commit9c0c4607956295c019620f5927be0523d1c581a8 (patch)
treeafeea8f1041eb5003f17afaa54d21dfded24905c /src/base/abci/abcQbf.c
parenta26d8621f018aeaae6259fa212f33a2267477ae1 (diff)
downloadabc-9c0c4607956295c019620f5927be0523d1c581a8.tar.gz
abc-9c0c4607956295c019620f5927be0523d1c581a8.tar.bz2
abc-9c0c4607956295c019620f5927be0523d1c581a8.zip
New command &genqbf to dump the QBF miter for ind inv computation.
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 )