summaryrefslogtreecommitdiffstats
path: root/src/aig/kit/kitFactor.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2011-06-26 19:40:16 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2011-06-26 19:40:16 -0700
commitcab60501d079771a22e0414c06a3881ae0c6c0c5 (patch)
treef9a968a931cfc032ca5d762c8d1b807ebabf43e2 /src/aig/kit/kitFactor.c
parent0985eaca6cc0fe721535fc159148b95ba60aa601 (diff)
downloadabc-cab60501d079771a22e0414c06a3881ae0c6c0c5.tar.gz
abc-cab60501d079771a22e0414c06a3881ae0c6c0c5.tar.bz2
abc-cab60501d079771a22e0414c06a3881ae0c6c0c5.zip
Fixed the problem in mapping with the new check.
Diffstat (limited to 'src/aig/kit/kitFactor.c')
-rw-r--r--src/aig/kit/kitFactor.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/aig/kit/kitFactor.c b/src/aig/kit/kitFactor.c
index 3982d7a8..ec4775ca 100644
--- a/src/aig/kit/kitFactor.c
+++ b/src/aig/kit/kitFactor.c
@@ -28,7 +28,7 @@ ABC_NAMESPACE_IMPL_START
////////////////////////////////////////////////////////////////////////
// factoring fails if intermediate memory usage exceed this limit
-#define KIT_FACTOR_MEM_LIMIT (1<<16)
+#define KIT_FACTOR_MEM_LIMIT (1<<20)
static Kit_Edge_t Kit_SopFactor_rec( Kit_Graph_t * pFForm, Kit_Sop_t * cSop, int nLits, Vec_Int_t * vMemory );
static Kit_Edge_t Kit_SopFactorLF_rec( Kit_Graph_t * pFForm, Kit_Sop_t * cSop, Kit_Sop_t * cSimple, int nLits, Vec_Int_t * vMemory );