Commit f948c6db by Alan Mishchenko

Tuning for multi-ouptut solver.

parent 5dce71d5
......@@ -1541,6 +1541,8 @@ clk2 = Abc_Clock();
if ( p->pTime4Outs )
{
abctime timeSince = Abc_Clock() - clkOne;
if ( timeSince )
printf( "%d (%d) ", (int)timeSince, (int)p->pTime4Outs[i] );
assert( p->pTime4Outs[i] > 0 );
p->pTime4Outs[i] = (p->pTime4Outs[i] > timeSince) ? p->pTime4Outs[i] - timeSince : 0;
if ( p->pTime4Outs[i] == 0 && status != l_True )
......
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