diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2011-07-02 17:05:14 -0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2011-07-02 17:05:14 -0700 |
commit | 10953634c9b9b04df84d76553b7e57e9fb13c943 (patch) | |
tree | 3b204cc26400ee84bde56e3abf25c5c96be44aac | |
parent | f866920eb5603f60fb087c96607d58c94fb31f28 (diff) | |
download | abc-10953634c9b9b04df84d76553b7e57e9fb13c943.tar.gz abc-10953634c9b9b04df84d76553b7e57e9fb13c943.tar.bz2 abc-10953634c9b9b04df84d76553b7e57e9fb13c943.zip |
Fixing a typo, which led to not printing delay in 'ps' after SC mapping.
-rw-r--r-- | src/base/abci/abcPrint.c | 2 |
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) ) { |