summaryrefslogtreecommitdiffstats
path: root/src/map/if/ifMap.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2013-08-29 16:03:40 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2013-08-29 16:03:40 -0700
commit009cc92e0544b69b0591394b3645de74eb513a8c (patch)
tree723fcc906b0a0ffbe43cbf78b90f9c7fba3ace26 /src/map/if/ifMap.c
parenta495163f74ee677bf9199bd5be8118c32f65e66a (diff)
downloadabc-009cc92e0544b69b0591394b3645de74eb513a8c.tar.gz
abc-009cc92e0544b69b0591394b3645de74eb513a8c.tar.bz2
abc-009cc92e0544b69b0591394b3645de74eb513a8c.zip
Buf fixes and minor changes to the &if mapper.
Diffstat (limited to 'src/map/if/ifMap.c')
-rw-r--r--src/map/if/ifMap.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/map/if/ifMap.c b/src/map/if/ifMap.c
index 5ac85807..85efe18e 100644
--- a/src/map/if/ifMap.c
+++ b/src/map/if/ifMap.c
@@ -276,24 +276,24 @@ void If_ObjPerformMappingAnd( If_Man_t * p, If_Obj_t * pObj, int Mode, int fPrep
// skip 5-input cuts, which cannot be decomposed
if ( (p->pPars->fEnableCheck75 || p->pPars->fEnableCheck75u) && pCut->nLeaves == 5 && pCut->nLimit == 5 )
{
- extern int If_CluCheckDecIn( word t, int nVars );
+ extern int If_CluCheckDecInAny( word t, int nVars );
extern int If_CluCheckDecOut( word t, int nVars );
unsigned TruthU = *If_CutTruth(pCut);
word Truth = (((word)TruthU << 32) | (word)TruthU);
p->nCuts5++;
- if ( If_CluCheckDecIn( Truth, 5 ) || If_CluCheckDecOut( Truth, 5 ) )
+ if ( If_CluCheckDecInAny( Truth, 5 ) )
p->nCuts5a++;
else
continue;
}
else if ( p->pPars->fVerbose && pCut->nLeaves == 5 )
{
- extern int If_CluCheckDecIn( word t, int nVars );
+ extern int If_CluCheckDecInAny( word t, int nVars );
extern int If_CluCheckDecOut( word t, int nVars );
unsigned TruthU = *If_CutTruth(pCut);
word Truth = (((word)TruthU << 32) | (word)TruthU);
p->nCuts5++;
- if ( If_CluCheckDecIn( Truth, 5 ) || If_CluCheckDecOut( Truth, 5 ) )
+ if ( If_CluCheckDecInAny( Truth, 5 ) || If_CluCheckDecOut( Truth, 5 ) )
p->nCuts5a++;
}
}