summaryrefslogtreecommitdiffstats
path: root/src/aig/saig/saigAbsStart.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2011-08-18 14:38:02 +0700
committerAlan Mishchenko <alanmi@berkeley.edu>2011-08-18 14:38:02 +0700
commitb71b5bbc233492321566551b7b5a69d99beaa297 (patch)
tree7f9035b43eea4ebd860a401ce5cdbdd08e12c586 /src/aig/saig/saigAbsStart.c
parent48ae2c448f66b9d4462472a5bc62924730612535 (diff)
downloadabc-b71b5bbc233492321566551b7b5a69d99beaa297.tar.gz
abc-b71b5bbc233492321566551b7b5a69d99beaa297.tar.bz2
abc-b71b5bbc233492321566551b7b5a69d99beaa297.zip
Bug fix in CBA and PBA.
Diffstat (limited to 'src/aig/saig/saigAbsStart.c')
-rw-r--r--src/aig/saig/saigAbsStart.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/aig/saig/saigAbsStart.c b/src/aig/saig/saigAbsStart.c
index ec933512..5f7042c8 100644
--- a/src/aig/saig/saigAbsStart.c
+++ b/src/aig/saig/saigAbsStart.c
@@ -139,7 +139,7 @@ Aig_Man_t * Saig_ManCexRefine( Aig_Man_t * p, Aig_Man_t * pAbs, Vec_Int_t * vFlo
}
// vFlopsNew contains PI numbers that should be kept in pAbs
if ( fVerbose )
- printf( "Adding %d registers to the abstraction.\n\n", Vec_IntSize(vFlopsNew) );
+ printf( "Adding %d registers to the abstraction (total = %d).\n\n", Vec_IntSize(vFlopsNew), Aig_ManRegNum(pAbs)+Vec_IntSize(vFlopsNew) );
// add to the abstraction
Vec_IntForEachEntry( vFlopsNew, Entry, i )
{
@@ -195,7 +195,7 @@ int Saig_ManCexRefineStep( Aig_Man_t * p, Vec_Int_t * vFlops, Abc_Cex_t * pCex,
}
if ( fVerbose )
{
- printf( "Adding %d registers to the abstraction. ", Vec_IntSize(vFlopsNew) );
+ printf( "Adding %d registers to the abstraction (total = %d). ", Vec_IntSize(vFlopsNew), Aig_ManRegNum(p)+Vec_IntSize(vFlopsNew) );
Abc_PrintTime( 1, "Time", clock() - clk );
}
// vFlopsNew contains PI number that should be kept in pAbs