Commit d8cb39a1 by Alan Mishchenko

Tuning for multi-ouptut solver.

parent f948c6db
......@@ -1545,8 +1545,12 @@ clk2 = Abc_Clock();
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 ( timeSince )
printf( "((%d)) ", p->pTime4Outs[i] );
if ( p->pTime4Outs[i] == 0 && status != l_True )
pPars->nDropOuts++;
if ( timeSince )
printf( "%d ", pPars->nDropOuts );
}
if ( status == l_False )
{
......
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