diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2013-11-04 23:31:12 -0800 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2013-11-04 23:31:12 -0800 |
commit | ed11db17638fb50c06ff8aeda674cf31c7cb8a2d (patch) | |
tree | 13af5863e7b1c9e59bf8b03fd03714a77bd21145 /src/sat | |
parent | 54b2cc1d72f2f86891077626a5c79da849f013b1 (diff) | |
download | abc-ed11db17638fb50c06ff8aeda674cf31c7cb8a2d.tar.gz abc-ed11db17638fb50c06ff8aeda674cf31c7cb8a2d.tar.bz2 abc-ed11db17638fb50c06ff8aeda674cf31c7cb8a2d.zip |
Tuning for multi-ouptut solver.
Diffstat (limited to 'src/sat')
-rw-r--r-- | src/sat/bmc/bmcBmc3.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/sat/bmc/bmcBmc3.c b/src/sat/bmc/bmcBmc3.c index 106e362c..72fbcc21 100644 --- a/src/sat/bmc/bmcBmc3.c +++ b/src/sat/bmc/bmcBmc3.c @@ -747,7 +747,6 @@ Gia_ManBmc_t * Saig_Bmc3ManStart( Aig_Man_t * pAig, int nTimeOutOne ) // time spent on each outputs if ( nTimeOutOne ) { - printf( "Timeout = %d (%d)\n", nTimeOutOne * CLOCKS_PER_SEC / 1000, CLOCKS_PER_SEC ); p->pTime4Outs = ABC_ALLOC( abctime, Saig_ManPoNum(pAig) ); for ( i = 0; i < Saig_ManPoNum(pAig); i++ ) p->pTime4Outs[i] = nTimeOutOne * CLOCKS_PER_SEC / 1000 + 1; @@ -1541,16 +1540,10 @@ 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 ( timeSince ) - printf( "((%d)) ", p->pTime4Outs[i] ); if ( p->pTime4Outs[i] == 0 && status != l_True ) pPars->nDropOuts++; - if ( timeSince ) - printf( "%d %d ", status == l_True, pPars->nDropOuts ); } if ( status == l_False ) { |