mirror of https://github.com/YosysHQ/abc.git
Commenting assertion that does not hold in AIGER 1.9, accoring to Baruch Sterin.
This commit is contained in:
parent
3880623c9b
commit
533ff6984e
|
|
@ -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++;
|
||||
|
|
|
|||
|
|
@ -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++;
|
||||
|
|
|
|||
Loading…
Reference in New Issue