diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2020-06-24 10:57:47 -0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2020-06-24 10:57:47 -0700 |
commit | 83f54185ef74a35e54a003a39810b7d755941af4 (patch) | |
tree | 8214c74d77d51fcdc662b4c0ac1daa6f4f2b76da | |
parent | 322cea8234aaa6a46c3f2f19c3c3246476231875 (diff) | |
download | abc-83f54185ef74a35e54a003a39810b7d755941af4.tar.gz abc-83f54185ef74a35e54a003a39810b7d755941af4.tar.bz2 abc-83f54185ef74a35e54a003a39810b7d755941af4.zip |
Bug fix in &cec (properly updating the status after the corner case bug fix\).
-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 69d72757..d9498510 100644 --- a/src/base/abci/abc.c +++ b/src/base/abci/abc.c @@ -36966,6 +36966,7 @@ int Abc_CommandAbc9Cec( Abc_Frame_t * pAbc, int argc, char ** argv ) Abc_Print( 1, "Networks are NOT EQUIVALENT. Output %d trivially differs (different phase). ", i ); Abc_PrintTime( 1, "Time", Abc_Clock() - clk ); } + pAbc->Status = 0;// satisfiable break; } if ( pAbc->pGia->pCexComb == NULL ) |