Small bug in bmc2 timeout.

This commit is contained in:
Alan Mishchenko 2012-07-16 07:48:45 -07:00
parent 226c24e49d
commit 1b95ee06f1
1 changed files with 1 additions and 1 deletions

View File

@ -764,7 +764,7 @@ int Saig_BmcPerform( Aig_Man_t * pAig, int nStart, int nFramesMax, int nNodesMax
p = Saig_BmcManStart( pAig, nFramesMax, nNodesMax, nConfMaxOne, nConfMaxAll, fVerbose );
// set runtime limit
if ( nTimeOut )
sat_solver_set_runtime_limit( p->pSat, nTimeOut );
sat_solver_set_runtime_limit( p->pSat, nTimeToStop );
for ( Iter = 0; ; Iter++ )
{
clk2 = clock();