mirror of https://github.com/YosysHQ/abc.git
Restoring correct behavior of 'tempor' after a change in counting BMC frames in 'bmc2'.
This commit is contained in:
parent
7b9132311e
commit
5d74635f7b
|
|
@ -230,7 +230,7 @@ Aig_Man_t * Saig_ManTempor( Aig_Man_t * pAig, int nFrames, int TimeOut, int nCon
|
|||
printf( "A cex found in the first %d frames.\n", nFrames );
|
||||
return NULL;
|
||||
}
|
||||
if ( nFramesFinished < nFrames )
|
||||
if ( nFramesFinished + 1 < nFrames )
|
||||
{
|
||||
int iLastBefore = Vec_IntLastNonZeroBeforeLimit( vTransSigs, nFramesFinished );
|
||||
if ( iLastBefore < 1 || !fUseTransSigs )
|
||||
|
|
|
|||
Loading…
Reference in New Issue