diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2013-10-02 21:41:01 -0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2013-10-02 21:41:01 -0700 |
commit | 38e577f5dfeb30379c0f97c246b4cc9428ba3db3 (patch) | |
tree | 9b868ecc8c74e4d48b1f7bd37fa2ac313d04e0fb /src/base/abci | |
parent | e01174c6db703a4d9f50a5ef3d494ea68c7640c2 (diff) | |
download | abc-38e577f5dfeb30379c0f97c246b4cc9428ba3db3.tar.gz abc-38e577f5dfeb30379c0f97c246b4cc9428ba3db3.tar.bz2 abc-38e577f5dfeb30379c0f97c246b4cc9428ba3db3.zip |
Enabling counter-example generation in the new BMC engine.
Diffstat (limited to 'src/base/abci')
-rw-r--r-- | src/base/abci/abc.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/base/abci/abc.c b/src/base/abci/abc.c index f65eaf85..c7a1c268 100644 --- a/src/base/abci/abc.c +++ b/src/base/abci/abc.c @@ -32230,7 +32230,9 @@ int Abc_CommandAbc9Bmc( Abc_Frame_t * pAbc, int argc, char ** argv ) Abc_Print( -1, "Abc_CommandAbc9Bmc(): There is no AIG.\n" ); return 0; } - Gia_ManBmcPerform( pAbc->pGia, pPars ); + pAbc->Status = Gia_ManBmcPerform( pAbc->pGia, pPars ); + pAbc->nFrames = pPars->iFrame; + Abc_FrameReplaceCex( pAbc, &pAbc->pGia->pCexSeq ); return 0; usage: |