Commit c7b1deed by Alan Mishchenko

Saving delay information after mapping.

parent 868caab9
...@@ -140,6 +140,7 @@ struct If_Par_t_ ...@@ -140,6 +140,7 @@ struct If_Par_t_
int nLatchesCoBox; // the number of white box inputs among the COs int nLatchesCoBox; // the number of white box inputs among the COs
int fLiftLeaves; // shift the leaves for seq mapping int fLiftLeaves; // shift the leaves for seq mapping
int fUseCoAttrs; // use CO attributes int fUseCoAttrs; // use CO attributes
float FinalDelay; // final delay after mapping
If_LibLut_t * pLutLib; // the LUT library If_LibLut_t * pLutLib; // the LUT library
float * pTimesArr; // arrival times float * pTimesArr; // arrival times
float * pTimesReq; // required times float * pTimesReq; // required times
......
...@@ -162,6 +162,7 @@ int If_ManPerformMappingComb( If_Man_t * p ) ...@@ -162,6 +162,7 @@ int If_ManPerformMappingComb( If_Man_t * p )
fclose( pTable ); fclose( pTable );
} }
*/ */
p->pPars->FinalDelay = p->RequiredGlo;
return 1; return 1;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment