diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2017-09-04 15:57:00 -0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2017-09-04 15:57:00 -0700 |
commit | ecae67e3bf4580591d1bbadd02696b2490fd469d (patch) | |
tree | 0b7e3e8ad4d4ed32ba5876aa2a5a00ef633cb402 /src/sat/bsat | |
parent | 2f95a58c0177590dff43702c88a3d10a59235116 (diff) | |
download | abc-ecae67e3bf4580591d1bbadd02696b2490fd469d.tar.gz abc-ecae67e3bf4580591d1bbadd02696b2490fd469d.tar.bz2 abc-ecae67e3bf4580591d1bbadd02696b2490fd469d.zip |
Several changes to various packages.
Diffstat (limited to 'src/sat/bsat')
-rw-r--r-- | src/sat/bsat/satInterA.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sat/bsat/satInterA.c b/src/sat/bsat/satInterA.c index c769352f..df127d1d 100644 --- a/src/sat/bsat/satInterA.c +++ b/src/sat/bsat/satInterA.c @@ -1019,10 +1019,11 @@ void * Inta_ManInterpolate( Inta_Man_t * p, Sto_Man_t * pCnf, abctime TimeToStop if ( fVerbose ) { // ABC_PRT( "Interpo", Abc_Clock() - clkTotal ); - printf( "Vars = %d. Roots = %d. Learned = %d. Resol steps = %d. Ave = %.2f. Mem = %.2f MB\n", + printf( "Vars = %d. Roots = %d. Learned = %d. Resol steps = %d. Ave = %.2f. Mem = %.2f MB ", p->pCnf->nVars, p->pCnf->nRoots, p->pCnf->nClauses-p->pCnf->nRoots, p->Counter, 1.0*(p->Counter-p->pCnf->nRoots)/(p->pCnf->nClauses-p->pCnf->nRoots), 1.0*Sto_ManMemoryReport(p->pCnf)/(1<<20) ); + Abc_PrintTime( 1, "Time", Abc_Clock() - clkTotal ); p->timeTotal += Abc_Clock() - clkTotal; } |