Saving delay information after mapping.

This commit is contained in:
Alan Mishchenko 2013-06-26 22:43:24 -07:00
parent 868caab9c0
commit c7b1deed3e
2 changed files with 2 additions and 0 deletions

View File

@ -140,6 +140,7 @@ struct If_Par_t_
int nLatchesCoBox; // the number of white box inputs among the COs
int fLiftLeaves; // shift the leaves for seq mapping
int fUseCoAttrs; // use CO attributes
float FinalDelay; // final delay after mapping
If_LibLut_t * pLutLib; // the LUT library
float * pTimesArr; // arrival times
float * pTimesReq; // required times

View File

@ -162,6 +162,7 @@ int If_ManPerformMappingComb( If_Man_t * p )
fclose( pTable );
}
*/
p->pPars->FinalDelay = p->RequiredGlo;
return 1;
}