summaryrefslogtreecommitdiffstats
path: root/src/base/abci/abcIf.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2012-03-21 23:19:49 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2012-03-21 23:19:49 -0700
commit0792ab0eb630da4a46b117367f86a6c7a8ab94a0 (patch)
tree66618b4760617bc3f42ff5818b691e8c789bed83 /src/base/abci/abcIf.c
parentf50ce3dbd936b77e6c44593ca46b82cd79062cf5 (diff)
downloadabc-0792ab0eb630da4a46b117367f86a6c7a8ab94a0.tar.gz
abc-0792ab0eb630da4a46b117367f86a6c7a8ab94a0.tar.bz2
abc-0792ab0eb630da4a46b117367f86a6c7a8ab94a0.zip
Additional features for delay optimization
Diffstat (limited to 'src/base/abci/abcIf.c')
-rw-r--r--src/base/abci/abcIf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/base/abci/abcIf.c b/src/base/abci/abcIf.c
index 2d6915e4..f2b101b9 100644
--- a/src/base/abci/abcIf.c
+++ b/src/base/abci/abcIf.c
@@ -209,7 +209,8 @@ If_Man_t * Abc_NtkToIf( Abc_Ntk_t * pNtk, If_Par_t * pPars )
Abc_NtkForEachCi( pNtk, pNode, i )
{
pNode->pCopy = (Abc_Obj_t *)If_ManCreateCi( pIfMan );
-//printf( "AIG CI %2d -> IF CI %2d\n", pNode->Id, ((If_Obj_t *)pNode->pCopy)->Id );
+ // transfer logic level information
+ ((If_Obj_t *)pNode->pCopy)->Level = pNode->Level;
}
// load the AIG into the mapper