diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2019-03-20 11:40:44 +0200 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2019-03-20 11:40:44 +0200 |
commit | 911c11afeb85dee8fadff7b785e843f1df8c9cdb (patch) | |
tree | 81df3629a846a1228bed2987937d2b4e66be4604 | |
parent | b78ec9db14bf2325da2ba699048408aa718f4c4a (diff) | |
download | abc-911c11afeb85dee8fadff7b785e843f1df8c9cdb.tar.gz abc-911c11afeb85dee8fadff7b785e843f1df8c9cdb.tar.bz2 abc-911c11afeb85dee8fadff7b785e843f1df8c9cdb.zip |
Adding support for LUT primitive in NDR.
-rw-r--r-- | src/base/wlc/wlcNtk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/base/wlc/wlcNtk.c b/src/base/wlc/wlcNtk.c index 8a1a64bf..ba8dcdc4 100644 --- a/src/base/wlc/wlcNtk.c +++ b/src/base/wlc/wlcNtk.c @@ -943,7 +943,7 @@ void Wlc_NtkDupDfs_rec( Wlc_Ntk_t * pNew, Wlc_Ntk_t * p, int iObj, Vec_Int_t * v return; if ( Wlc_ObjCopy(p, iObj) ) return; - printf( "Visiting node %d with type %d (%s)\n", iObj, Wlc_NtkObj(p, iObj)->Type, Wlc_NtkObj(p, iObj)->Type < WLC_OBJ_NUMBER ? Wlc_Names[Wlc_NtkObj(p, iObj)->Type] : NULL ); + //printf( "Visiting node %d with type %d (%s)\n", iObj, Wlc_NtkObj(p, iObj)->Type, Wlc_NtkObj(p, iObj)->Type < WLC_OBJ_NUMBER ? Wlc_Names[Wlc_NtkObj(p, iObj)->Type] : NULL ); pObj = Wlc_NtkObj( p, iObj ); assert( pObj->Type != WLC_OBJ_FF ); Wlc_ObjForEachFanin( pObj, iFanin, i ) |