diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2019-11-19 21:08:02 +0800 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2019-11-19 21:08:02 +0800 |
commit | 4242cec36e0b79f1a59c7909c69e6728af55d9d8 (patch) | |
tree | 1f21da48b8e40871d8ebae46d6d2b9df87cdf448 | |
parent | 10dd41beafedcc2fd7208a59014e720b30f824c9 (diff) | |
download | abc-4242cec36e0b79f1a59c7909c69e6728af55d9d8.tar.gz abc-4242cec36e0b79f1a59c7909c69e6728af55d9d8.tar.bz2 abc-4242cec36e0b79f1a59c7909c69e6728af55d9d8.zip |
Dumping multiple counter-examples.
-rw-r--r-- | src/base/io/io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/base/io/io.c b/src/base/io/io.c index ffb692e6..693dbc9c 100644 --- a/src/base/io/io.c +++ b/src/base/io/io.c @@ -2517,7 +2517,7 @@ int IoCommandWriteCex( Abc_Frame_t * pAbc, int argc, char **argv ) fprintf( pAbc->Out, "Empty network.\n" ); return 0; } - if ( pNtk->pModel == NULL && pAbc->pCex == NULL ) + if ( pNtk->pModel == NULL && pAbc->pCex == NULL && pAbc->vCexVec == NULL ) { fprintf( pAbc->Out, "Counter-example is not available.\n" ); return 0; |