summaryrefslogtreecommitdiffstats
path: root/src/map/scl/sclLibScl.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2015-11-11 23:12:05 -0800
committerAlan Mishchenko <alanmi@berkeley.edu>2015-11-11 23:12:05 -0800
commitf7c969ca66649627281510b8c63d867288faafd7 (patch)
treea0a1d8ae7f60272378cf9c83b4c7b2c46cac7530 /src/map/scl/sclLibScl.c
parent71847b9d17c5b64ddc7abd4ff85f5637e2fe4a15 (diff)
downloadabc-f7c969ca66649627281510b8c63d867288faafd7.tar.gz
abc-f7c969ca66649627281510b8c63d867288faafd7.tar.bz2
abc-f7c969ca66649627281510b8c63d867288faafd7.zip
Improvements to timing optimization.
Diffstat (limited to 'src/map/scl/sclLibScl.c')
-rw-r--r--src/map/scl/sclLibScl.c4
1 files changed, 2 insertions, 2 deletions
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++ )