Commit 779cff21 by Alan Mishchenko

Bug fix in the timeout for 'int'.

parent 64e2ee22
......@@ -956,7 +956,7 @@ void * Inta_ManInterpolate( Inta_Man_t * p, Sto_Man_t * pCnf, abctime TimeToStop
int RetValue = 1;
abctime clkTotal = Abc_Clock();
if ( Abc_Clock() > TimeToStop )
if ( TimeToStop && Abc_Clock() > TimeToStop )
return NULL;
// check that the CNF makes sense
......
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