mirror of https://github.com/YosysHQ/abc.git
Setting the default limit on the number of timeframe in bmc2/bmc3 to 0 (infinity).
This commit is contained in:
parent
c9147d76cc
commit
af8cac095d
|
|
@ -824,7 +824,7 @@ int Saig_BmcPerform( Aig_Man_t * pAig, int nStart, int nFramesMax, int nNodesMax
|
|||
}
|
||||
else // if ( RetValue == l_False || RetValue == l_Undef )
|
||||
{
|
||||
printf( "No output was asserted in %d frames. ", p->iFramePrev-1 );
|
||||
printf( "No output was asserted in %d frames. ", Abc_MaxInt(p->iFramePrev-1, 0) );
|
||||
if ( piFrames )
|
||||
{
|
||||
if ( p->iOutputLast > 0 )
|
||||
|
|
|
|||
Loading…
Reference in New Issue