summaryrefslogtreecommitdiffstats
path: root/src/map/mio/mioUtils.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/map/mio/mioUtils.c')
-rw-r--r--src/map/mio/mioUtils.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/map/mio/mioUtils.c b/src/map/mio/mioUtils.c
index d9447085..fac32873 100644
--- a/src/map/mio/mioUtils.c
+++ b/src/map/mio/mioUtils.c
@@ -613,6 +613,34 @@ Mio_Gate_t * Mio_GateCreatePseudo( int nInputs )
return pGate;
}
+/**Function*************************************************************
+
+ Synopsis [Adds constant value to all delay values.]
+
+ Description [The pseudo-gate is a N-input gate with all info set to 0.]
+
+ SideEffects []
+
+ SeeAlso []
+
+***********************************************************************/
+void Mio_LibraryShift( Mio_Library_t * pLib, double Shift )
+{
+ Mio_Gate_t * pGate;
+ Mio_Pin_t * pPin;
+ Mio_LibraryForEachGate( pLib, pGate )
+ {
+ pGate->dDelayMax += Shift;
+ Mio_GateForEachPin( pGate, pPin )
+ {
+ pPin->dDelayBlockRise += Shift;
+ pPin->dDelayBlockFall += Shift;
+ pPin->dDelayBlockMax += Shift;
+ }
+ }
+}
+
+
////////////////////////////////////////////////////////////////////////
/// END OF FILE ///
////////////////////////////////////////////////////////////////////////