mirror of https://github.com/YosysHQ/abc.git
Fixing a typo, which led to not printing delay in 'ps' after SC mapping.
This commit is contained in:
parent
f866920eb5
commit
10953634c9
|
|
@ -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) )
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue