summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2013-05-13 23:25:34 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2013-05-13 23:25:34 -0700
commit533ff6984e4a757dedb14210b0cdbd4ce254ab6e (patch)
tree58cdb4c387ab743bc0c5dd1a993481ec04340547
parent3880623c9b23b65659db581ade13b5996a08dba0 (diff)
downloadabc-533ff6984e4a757dedb14210b0cdbd4ce254ab6e.tar.gz
abc-533ff6984e4a757dedb14210b0cdbd4ce254ab6e.tar.bz2
abc-533ff6984e4a757dedb14210b0cdbd4ce254ab6e.zip
Commenting assertion that does not hold in AIGER 1.9, accoring to Baruch Sterin.
-rw-r--r--src/aig/gia/giaAiger.c2
-rw-r--r--src/base/io/ioReadAiger.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/aig/gia/giaAiger.c b/src/aig/gia/giaAiger.c
index 237566e5..587146ba 100644
--- a/src/aig/gia/giaAiger.c
+++ b/src/aig/gia/giaAiger.c
@@ -198,7 +198,7 @@ Gia_Man_t * Gia_AigerReadFromMemory( char * pContents, int nFileSize, int fSkipS
nAnds = atoi( (const char *)pCur ); while ( *pCur != ' ' && *pCur != '\n' ) pCur++;
if ( *pCur == ' ' )
{
- assert( nOutputs == 0 );
+// assert( nOutputs == 0 );
// read the number of properties
pCur++;
nBad = atoi( (const char *)pCur ); while ( *pCur != ' ' && *pCur != '\n' ) pCur++;
diff --git a/src/base/io/ioReadAiger.c b/src/base/io/ioReadAiger.c
index 5c31f56c..ab3c1e87 100644
--- a/src/base/io/ioReadAiger.c
+++ b/src/base/io/ioReadAiger.c
@@ -284,7 +284,7 @@ Abc_Ntk_t * Io_ReadAiger( char * pFileName, int fCheck )
nAnds = atoi( pCur ); while ( *pCur != ' ' && *pCur != '\n' ) pCur++;
if ( *pCur == ' ' )
{
- assert( nOutputs == 0 );
+// assert( nOutputs == 0 );
// read the number of properties
pCur++;
nBad = atoi( pCur ); while ( *pCur != ' ' && *pCur != '\n' ) pCur++;