Bug fix in timeout of &splitprove.

This commit is contained in:
Alan Mishchenko 2014-06-16 21:52:09 -07:00
parent e20364896e
commit df418d6cba
1 changed files with 1 additions and 1 deletions

View File

@ -495,7 +495,7 @@ int Cec_GiaSplitTest2( Gia_Man_t * p, int nProcs, int nTimeOut, int nIterMax, in
Gia_ManStop( pPart );
else // UNDEC
Vec_PtrPush( vStack, pPart );
if ( nIterMax && Vec_PtrSize(vStack) >= nIterMax )
if ( nIterMax && nIter >= nIterMax )
break;
}
if ( Vec_PtrSize(vStack) == 0 )