summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2011-07-02 17:05:14 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2011-07-02 17:05:14 -0700
commit10953634c9b9b04df84d76553b7e57e9fb13c943 (patch)
tree3b204cc26400ee84bde56e3abf25c5c96be44aac /src
parentf866920eb5603f60fb087c96607d58c94fb31f28 (diff)
downloadabc-10953634c9b9b04df84d76553b7e57e9fb13c943.tar.gz
abc-10953634c9b9b04df84d76553b7e57e9fb13c943.tar.bz2
abc-10953634c9b9b04df84d76553b7e57e9fb13c943.zip
Fixing a typo, which led to not printing delay in 'ps' after SC mapping.
Diffstat (limited to 'src')
-rw-r--r--src/base/abci/abcPrint.c2
1 files changed, 1 insertions, 1 deletions
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) )
{