From 10953634c9b9b04df84d76553b7e57e9fb13c943 Mon Sep 17 00:00:00 2001 From: Alan Mishchenko Date: Sat, 2 Jul 2011 17:05:14 -0700 Subject: Fixing a typo, which led to not printing delay in 'ps' after SC mapping. --- src/base/abci/abcPrint.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/base/abci/abcPrint.c b/src/base/abci/abcPrint.c index 49d834d1..bdcd926e 100644 --- a/src/base/abci/abcPrint.c +++ b/src/base/abci/abcPrint.c @@ -258,7 +258,7 @@ void Abc_NtkPrintStats( Abc_Ntk_t * pNtk, int fFactored, int fSaveBest, int fDum else if ( Abc_NtkHasMapping(pNtk) ) { fprintf( pFile, " area =%5.2f", Abc_NtkGetMappedArea(pNtk) ); - fprintf( pFile, " delay =%5.2f", Abc_NtkGetArea(pNtk) ); + fprintf( pFile, " delay =%5.2f", Abc_NtkDelayTrace(pNtk) ); } else if ( !Abc_NtkHasBlackbox(pNtk) ) { -- cgit v1.2.3