diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2013-01-23 16:50:45 +0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2013-01-23 16:50:45 +0700 |
commit | 4efc89d3421198005af1b6a5971809628897aa19 (patch) | |
tree | 498b8b9712f65b48732dc474deba00484206bce3 /src/python | |
parent | dfd871c24df7699ffa55d10907bc6e7f7ffefd0e (diff) | |
download | abc-4efc89d3421198005af1b6a5971809628897aa19.tar.gz abc-4efc89d3421198005af1b6a5971809628897aa19.tar.bz2 abc-4efc89d3421198005af1b6a5971809628897aa19.zip |
Enabled detecting CEXes in multiple POs without stopping (sim3 -a).
Diffstat (limited to 'src/python')
-rw-r--r-- | src/python/pyabc.i | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/python/pyabc.i b/src/python/pyabc.i index d2fc5494..bb8cc3ca 100644 --- a/src/python/pyabc.i +++ b/src/python/pyabc.i @@ -238,6 +238,8 @@ Abc_Cex_t* _cex_get_vec(int i) return NULL; } + if ( pCex == (Abc_Cex_t *)1 ) + return pCex; return Abc_CexDup( pCex, -1 ); } |