From 9842a666e6c1d2546c940c48bbd6602a448bc01b Mon Sep 17 00:00:00 2001 From: Alan Mishchenko Date: Wed, 18 Jun 2014 17:28:20 -0700 Subject: Experiments with CNF generation. --- src/aig/gia/giaJf.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/aig/gia') diff --git a/src/aig/gia/giaJf.c b/src/aig/gia/giaJf.c index 08ad17c7..b5aa7787 100644 --- a/src/aig/gia/giaJf.c +++ b/src/aig/gia/giaJf.c @@ -397,7 +397,10 @@ void Jf_ManFree( Jf_Man_t * p ) if ( p->pPars->fVerbose && p->pDsd ) Sdm_ManPrintDsdStats( p->pDsd, 0 ); if ( p->pPars->fVerbose && p->vTtMem ) - printf( "Unique truth tables = %d. Memory = %.2f MB\n", Vec_MemEntryNum(p->vTtMem), Vec_MemMemory(p->vTtMem) / (1<<20) ); + { + printf( "Unique truth tables = %d. Memory = %.2f MB ", Vec_MemEntryNum(p->vTtMem), Vec_MemMemory(p->vTtMem) / (1<<20) ); + Abc_PrintTime( 1, "Time", Abc_Clock() - p->clkStart ); + } if ( p->pPars->fVeryVerbose && p->pPars->fCutMin && p->pPars->fFuncDsd ) Jf_ManProfileClasses( p ); if ( p->pPars->fCoarsen ) -- cgit v1.2.3