Commit 17af4542 by Alan Mishchenko

Commenting out undesirable warnings/assertions.

parent 93b10316
...@@ -163,9 +163,8 @@ int Abc_NtkReadLogFile( char * pFileName, Abc_Cex_t ** ppCex, int * pnFrames ) ...@@ -163,9 +163,8 @@ int Abc_NtkReadLogFile( char * pFileName, Abc_Cex_t ** ppCex, int * pnFrames )
if ( pToken ) if ( pToken )
nFrames2 = atoi( pToken ); nFrames2 = atoi( pToken );
} }
else // else
printf( "Warning! The current status is SAT but the current CEX is not given.\n" ); // printf( "Warning! The current status is SAT but the current CEX is not given.\n" );
} }
else if ( !strncmp( Buffer, "snl_UNK", strlen("snl_UNK") ) ) else if ( !strncmp( Buffer, "snl_UNK", strlen("snl_UNK") ) )
{ {
......
...@@ -71,7 +71,7 @@ void Abc_NtkQbf( Abc_Ntk_t * pNtk, int nPars, int nItersMax, int fVerbose ) ...@@ -71,7 +71,7 @@ void Abc_NtkQbf( Abc_Ntk_t * pNtk, int nPars, int nItersMax, int fVerbose )
assert( Abc_NtkIsComb(pNtk) ); assert( Abc_NtkIsComb(pNtk) );
assert( Abc_NtkPoNum(pNtk) == 1 ); assert( Abc_NtkPoNum(pNtk) == 1 );
assert( nPars > 0 && nPars < Abc_NtkPiNum(pNtk) ); assert( nPars > 0 && nPars < Abc_NtkPiNum(pNtk) );
assert( Abc_NtkPiNum(pNtk)-nPars < 32 ); // assert( Abc_NtkPiNum(pNtk)-nPars < 32 );
nInputs = Abc_NtkPiNum(pNtk) - nPars; nInputs = Abc_NtkPiNum(pNtk) - nPars;
// initialize the synthesized network with 0000-combination // initialize the synthesized network with 0000-combination
......
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