Commit 533ff698 by Alan Mishchenko

Commenting assertion that does not hold in AIGER 1.9, accoring to Baruch Sterin.

parent 3880623c
...@@ -198,7 +198,7 @@ Gia_Man_t * Gia_AigerReadFromMemory( char * pContents, int nFileSize, int fSkipS ...@@ -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++; nAnds = atoi( (const char *)pCur ); while ( *pCur != ' ' && *pCur != '\n' ) pCur++;
if ( *pCur == ' ' ) if ( *pCur == ' ' )
{ {
assert( nOutputs == 0 ); // assert( nOutputs == 0 );
// read the number of properties // read the number of properties
pCur++; pCur++;
nBad = atoi( (const char *)pCur ); while ( *pCur != ' ' && *pCur != '\n' ) pCur++; nBad = atoi( (const char *)pCur ); while ( *pCur != ' ' && *pCur != '\n' ) pCur++;
......
...@@ -284,7 +284,7 @@ Abc_Ntk_t * Io_ReadAiger( char * pFileName, int fCheck ) ...@@ -284,7 +284,7 @@ Abc_Ntk_t * Io_ReadAiger( char * pFileName, int fCheck )
nAnds = atoi( pCur ); while ( *pCur != ' ' && *pCur != '\n' ) pCur++; nAnds = atoi( pCur ); while ( *pCur != ' ' && *pCur != '\n' ) pCur++;
if ( *pCur == ' ' ) if ( *pCur == ' ' )
{ {
assert( nOutputs == 0 ); // assert( nOutputs == 0 );
// read the number of properties // read the number of properties
pCur++; pCur++;
nBad = atoi( pCur ); while ( *pCur != ' ' && *pCur != '\n' ) pCur++; nBad = atoi( pCur ); while ( *pCur != ' ' && *pCur != '\n' ) pCur++;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment