Fixing a typo, which led to not printing delay in 'ps' after SC mapping.

This commit is contained in:
Alan Mishchenko 2011-07-02 17:05:14 -07:00
parent f866920eb5
commit 10953634c9
1 changed files with 1 additions and 1 deletions

View File

@ -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) )
{