From ecae67e3bf4580591d1bbadd02696b2490fd469d Mon Sep 17 00:00:00 2001 From: Alan Mishchenko Date: Mon, 4 Sep 2017 15:57:00 -0700 Subject: Several changes to various packages. --- src/sat/bsat/satInterA.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/sat') 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; } -- cgit v1.2.3