Commit af8cac09 by Alan Mishchenko

Setting the default limit on the number of timeframe in bmc2/bmc3 to 0 (infinity).

parent c9147d76
......@@ -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 )
......
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