diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2012-10-01 18:28:55 -0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2012-10-01 18:28:55 -0700 |
commit | a287bcd2e21adb35409d1225bd20df920515af9b (patch) | |
tree | a1f83e2ae1f898aa423cd4bcdb452c7149754b8d /src/proof | |
parent | 7d29663720b02b02ceaae5b75fb8fe05ba4aae73 (diff) | |
download | abc-a287bcd2e21adb35409d1225bd20df920515af9b.tar.gz abc-a287bcd2e21adb35409d1225bd20df920515af9b.tar.bz2 abc-a287bcd2e21adb35409d1225bd20df920515af9b.zip |
Fixed several important problems in choice computation (command 'dch').
Diffstat (limited to 'src/proof')
-rw-r--r-- | src/proof/dch/dchCore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proof/dch/dchCore.c b/src/proof/dch/dchCore.c index da103e0e..0d2e8c0d 100644 --- a/src/proof/dch/dchCore.c +++ b/src/proof/dch/dchCore.c @@ -112,7 +112,7 @@ p->timeTotal = clock() - clkTotal; // count the number of representatives if ( pPars->fVerbose ) Abc_Print( 1, "STATS: Reprs = %6d. Equivs = %6d. Choices = %6d.\n", - Dch_DeriveChoiceCountReprs( pResult ), + Dch_DeriveChoiceCountReprs( pAig ), Dch_DeriveChoiceCountEquivs( pResult ), Aig_ManChoiceNum( pResult ) ); return pResult; |