diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2016-11-30 12:07:08 -0800 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2016-11-30 12:07:08 -0800 |
commit | b3514ee7e000972ecb43603eb08bf56368c0d634 (patch) | |
tree | 153555a23538e4666376ea33cfd9f68b7e20aaa1 /src/base/io | |
parent | 329cee498196f8751f5ca111ed786e3fc1211c86 (diff) | |
download | abc-b3514ee7e000972ecb43603eb08bf56368c0d634.tar.gz abc-b3514ee7e000972ecb43603eb08bf56368c0d634.tar.bz2 abc-b3514ee7e000972ecb43603eb08bf56368c0d634.zip |
Commenting out bailout in 'print_cex' when CEX has latches initialized to 1.
Diffstat (limited to 'src/base/io')
-rw-r--r-- | src/base/io/io.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/base/io/io.c b/src/base/io/io.c index b181bc1d..093eccca 100644 --- a/src/base/io/io.c +++ b/src/base/io/io.c @@ -2378,6 +2378,7 @@ int IoCommandWriteCex( Abc_Frame_t * pAbc, int argc, char **argv ) Abc_Obj_t * pObj; FILE * pFile; int i, f; + /* Abc_NtkForEachLatch( pNtk, pObj, i ) if ( !Abc_LatchIsInit0(pObj) ) { @@ -2385,7 +2386,7 @@ int IoCommandWriteCex( Abc_Frame_t * pAbc, int argc, char **argv ) fprintf( stdout, "Run commands \"undc\" and \"zero\" and then rerun the equivalence check.\n" ); return 1; } - + */ pFile = fopen( pFileName, "w" ); if ( pFile == NULL ) { |