diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2013-11-01 12:11:46 -0400 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2013-11-01 12:11:46 -0400 |
commit | 3b8095a6715f8d9befa450d61af5e8567c1f19ac (patch) | |
tree | 2bc6eda79f5b3d40433bb69db14646d1fcfdf112 /src/proof | |
parent | 57b51411813a7eab9943cc7b0efa884949156171 (diff) | |
download | abc-3b8095a6715f8d9befa450d61af5e8567c1f19ac.tar.gz abc-3b8095a6715f8d9befa450d61af5e8567c1f19ac.tar.bz2 abc-3b8095a6715f8d9befa450d61af5e8567c1f19ac.zip |
Sweeper condition complement bug-fix and code for internal verification.
Diffstat (limited to 'src/proof')
-rw-r--r-- | src/proof/cec/cecCec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proof/cec/cecCec.c b/src/proof/cec/cecCec.c index 1d4c83b6..f3b1a3b0 100644 --- a/src/proof/cec/cecCec.c +++ b/src/proof/cec/cecCec.c @@ -301,7 +301,7 @@ int Cec_ManVerifyTwo( Gia_Man_t * p0, Gia_Man_t * p1, int fVerbose ) int RetValue; Cec_ManCecSetDefaultParams( pPars ); pPars->fVerbose = fVerbose; - pMiter = Gia_ManMiter( p0, p1, 0, 1, 0, pPars->fVerbose ); + pMiter = Gia_ManMiter( p0, p1, 0, 1, 0, 0, pPars->fVerbose ); if ( pMiter == NULL ) return -1; RetValue = Cec_ManVerify( pMiter, pPars ); |