diff options
Diffstat (limited to 'src/map/amap/amapMerge.c')
-rw-r--r-- | src/map/amap/amapMerge.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/map/amap/amapMerge.c b/src/map/amap/amapMerge.c index 23d8384b..ecf11b07 100644 --- a/src/map/amap/amapMerge.c +++ b/src/map/amap/amapMerge.c @@ -20,6 +20,9 @@ #include "amapInt.h" +ABC_NAMESPACE_IMPL_START + + //////////////////////////////////////////////////////////////////////// /// DECLARATIONS /// //////////////////////////////////////////////////////////////////////// @@ -394,9 +397,9 @@ void Amap_ManMergeNodeCutsMux( Amap_Man_t * p, Amap_Obj_t * pNode ) continue; if ( Amap_ManFindCut( pNode, pFanin2, fComplFanin2, Vec_IntEntry(vRules, x+2), p->vCuts2 ) ) continue; - Vec_PtrForEachEntry( p->vCuts0, pCut0, c0 ) - Vec_PtrForEachEntry( p->vCuts1, pCut1, c1 ) - Vec_PtrForEachEntry( p->vCuts2, pCut2, c2 ) + Vec_PtrForEachEntry( Amap_Cut_t *, p->vCuts0, pCut0, c0 ) + Vec_PtrForEachEntry( Amap_Cut_t *, p->vCuts1, pCut1, c1 ) + Vec_PtrForEachEntry( Amap_Cut_t *, p->vCuts2, pCut2, c2 ) { Amap_Nod_t * pNod = Amap_LibNod( p->pLib, Vec_IntEntry(vRules, x+3) ); if ( pNod->pSets == NULL ) @@ -533,3 +536,5 @@ ABC_PRT( "Time ", clock() - clk ); //////////////////////////////////////////////////////////////////////// +ABC_NAMESPACE_IMPL_END + |