From f7c969ca66649627281510b8c63d867288faafd7 Mon Sep 17 00:00:00 2001 From: Alan Mishchenko Date: Wed, 11 Nov 2015 23:12:05 -0800 Subject: Improvements to timing optimization. --- src/map/scl/sclLibScl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/map/scl/sclLibScl.c') diff --git a/src/map/scl/sclLibScl.c b/src/map/scl/sclLibScl.c index 59f8cbc6..f3a1b0ed 100644 --- a/src/map/scl/sclLibScl.c +++ b/src/map/scl/sclLibScl.c @@ -173,8 +173,8 @@ static int Abc_SclReadLibrary( Vec_Str_t * vOut, int * pPos, SC_Lib * p ) pPin->rise_cap = Vec_StrGetF(vOut, pPos); pPin->fall_cap = Vec_StrGetF(vOut, pPos); - pPin->rise_capI = (int)(MIO_NUM*pPin->rise_capI); - pPin->fall_capI = (int)(MIO_NUM*pPin->fall_capI); + pPin->rise_capI = (int)(MIO_NUM*pPin->rise_cap); + pPin->fall_capI = (int)(MIO_NUM*pPin->fall_cap); } for ( j = 0; j < pCell->n_outputs; j++ ) -- cgit v1.2.3