diff options
Diffstat (limited to 'src/base/abci/abcRec3.c')
-rw-r--r-- | src/base/abci/abcRec3.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/base/abci/abcRec3.c b/src/base/abci/abcRec3.c index e76d904a..b77684b1 100644 --- a/src/base/abci/abcRec3.c +++ b/src/base/abci/abcRec3.c @@ -611,6 +611,11 @@ int Abc_NtkRecAddCut3( If_Man_t * pIfMan, If_Obj_t * pRoot, If_Cut_t * pCut ) clk = clock(); If_CutTraverse( pIfMan, pRoot, pCut, vNodes ); p->timeTruth += clock() - clk; + if ( Vec_PtrSize(vNodes) > 253 ) + { + p->nFilterSize++; + return 1; + } // semi-canonicize truth table clk = clock(); |