summaryrefslogtreecommitdiffstats
path: root/src/base/abci
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2012-02-10 00:07:31 -0800
committerAlan Mishchenko <alanmi@berkeley.edu>2012-02-10 00:07:31 -0800
commit71891354b4263ceefba38bf9e882dad8117256f5 (patch)
tree0a27cb838bfbe1121d91f5afebeaae07ad0147f2 /src/base/abci
parentb186f362a7001ce24a8b942b146d8eb36e50d767 (diff)
downloadabc-71891354b4263ceefba38bf9e882dad8117256f5.tar.gz
abc-71891354b4263ceefba38bf9e882dad8117256f5.tar.bz2
abc-71891354b4263ceefba38bf9e882dad8117256f5.zip
Bug fixes in &cec command.
Diffstat (limited to 'src/base/abci')
-rw-r--r--src/base/abci/abc.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/base/abci/abc.c b/src/base/abci/abc.c
index 35f2f3eb..a4b5d566 100644
--- a/src/base/abci/abc.c
+++ b/src/base/abci/abc.c
@@ -24980,7 +24980,8 @@ int Abc_CommandAbc9Cec( Abc_Frame_t * pAbc, int argc, char ** argv )
return 1;
}
Abc_Print( 1, "Assuming the current network is a double-output miter. (Conflict limit = %d.)\n", pPars->nBTLimit );
- Cec_ManVerify( pAbc->pGia, pPars );
+ pAbc->Status = Cec_ManVerify( pAbc->pGia, pPars );
+ Abc_FrameReplaceCex( pAbc, &pAbc->pGia->pCexComb );
return 0;
}
@@ -25017,7 +25018,8 @@ int Abc_CommandAbc9Cec( Abc_Frame_t * pAbc, int argc, char ** argv )
pMiter = Gia_ManMiter( pAbc->pGia, pSecond, 1, 0, pPars->fVerbose );
if ( pMiter )
{
- Cec_ManVerify( pMiter, pPars );
+ pAbc->Status = Cec_ManVerify( pMiter, pPars );
+ Abc_FrameReplaceCex( pAbc, &pAbc->pGia->pCexComb );
Gia_ManStop( pMiter );
}
Gia_ManStop( pSecond );