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/base/abci/abc.c | |
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/base/abci/abc.c')
-rw-r--r-- | src/base/abci/abc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/base/abci/abc.c b/src/base/abci/abc.c index 0681f28e..e37944cf 100644 --- a/src/base/abci/abc.c +++ b/src/base/abci/abc.c @@ -27966,7 +27966,7 @@ int Abc_CommandAbc9Miter( Abc_Frame_t * pAbc, int argc, char ** argv ) return 0; } // compute the miter - pAux = Gia_ManMiter( pAbc->pGia, pSecond, nInsDup, fDualOut, fSeq, fVerbose ); + pAux = Gia_ManMiter( pAbc->pGia, pSecond, nInsDup, fDualOut, fSeq, 0, fVerbose ); Gia_ManStop( pSecond ); Abc_FrameUpdateGia( pAbc, pAux ); return 0; @@ -29352,7 +29352,7 @@ int Abc_CommandAbc9Cec( Abc_Frame_t * pAbc, int argc, char ** argv ) return 0; } // compute the miter - pMiter = Gia_ManMiter( pAbc->pGia, pSecond, 0, 1, 0, pPars->fVerbose ); + pMiter = Gia_ManMiter( pAbc->pGia, pSecond, 0, 1, 0, 0, pPars->fVerbose ); if ( pMiter ) { if ( fDumpMiter ) |