summaryrefslogtreecommitdiffstats
path: root/src/base/abci
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2015-02-04 16:29:55 -0800
committerAlan Mishchenko <alanmi@berkeley.edu>2015-02-04 16:29:55 -0800
commit8410daf3e49f142dc94587d77680d7cdcfe06b5a (patch)
tree1421944373a2581eaef995c392efe2dfd712affb /src/base/abci
parenteb270018b92d949953cba3017ae6a540260598c1 (diff)
downloadabc-8410daf3e49f142dc94587d77680d7cdcfe06b5a.tar.gz
abc-8410daf3e49f142dc94587d77680d7cdcfe06b5a.tar.bz2
abc-8410daf3e49f142dc94587d77680d7cdcfe06b5a.zip
Improvements and tuning of CBA with buffering/sizing.
Diffstat (limited to 'src/base/abci')
-rw-r--r--src/base/abci/abcPrint.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/base/abci/abcPrint.c b/src/base/abci/abcPrint.c
index 02c06e65..361f1e99 100644
--- a/src/base/abci/abcPrint.c
+++ b/src/base/abci/abcPrint.c
@@ -1073,7 +1073,7 @@ void Abc_NtkPrintGates( Abc_Ntk_t * pNtk, int fUseLibrary )
// count the gates by name
CounterTotal = 0;
- Abc_NtkForEachNode( pNtk, pObj, i )
+ Abc_NtkForEachNodeNotBarBuf( pNtk, pObj, i )
{
if ( i == 0 ) continue;
Mio_GateSetValue( (Mio_Gate_t *)pObj->pData, 1 + Mio_GateReadValue((Mio_Gate_t *)pObj->pData) );
@@ -1128,7 +1128,7 @@ void Abc_NtkPrintGates( Abc_Ntk_t * pNtk, int fUseLibrary )
// get hold of the SOP of the node
CountConst = CountBuf = CountInv = CountAnd = CountOr = CountOther = CounterTotal = 0;
- Abc_NtkForEachNode( pNtk, pObj, i )
+ Abc_NtkForEachNodeNotBarBuf( pNtk, pObj, i )
{
if ( i == 0 ) continue;
if ( Abc_NtkHasMapping(pNtk) )