diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2015-03-17 09:23:57 +0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2015-03-17 09:23:57 +0700 |
commit | 120a30c2e4d8bd0455c706a5b1664aaaf82e4c74 (patch) | |
tree | ef2c7f1ef3a8b9117d11a26388d4032384a03f5b /src/base | |
parent | 7fe11c51cfb050dafef1cf875dc4eb4e65352465 (diff) | |
download | abc-120a30c2e4d8bd0455c706a5b1664aaaf82e4c74.tar.gz abc-120a30c2e4d8bd0455c706a5b1664aaaf82e4c74.tar.bz2 abc-120a30c2e4d8bd0455c706a5b1664aaaf82e4c74.zip |
Bug fix in &cec (not generating a CEX).
Diffstat (limited to 'src/base')
-rw-r--r-- | src/base/abci/abc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/base/abci/abc.c b/src/base/abci/abc.c index 10a6f191..1a9cf263 100644 --- a/src/base/abci/abc.c +++ b/src/base/abci/abc.c @@ -30954,6 +30954,7 @@ int Abc_CommandAbc9Cec( Abc_Frame_t * pAbc, int argc, char ** argv ) Abc_Print( 1, "Assuming the current network is a single-output miter. (Conflict limit = %d.)\n", pPars->nBTLimit ); pTemp = Gia_ManTransformToDual( pAbc->pGia ); pAbc->Status = Cec_ManVerify( pTemp, pPars ); + ABC_SWAP( Abc_Cex_t *, pAbc->pGia->pCexComb, pTemp->pCexComb ); Gia_ManStop( pTemp ); } Abc_FrameReplaceCex( pAbc, &pAbc->pGia->pCexComb ); |