summaryrefslogtreecommitdiffstats
path: root/src/misc/nm/nmApi.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/misc/nm/nmApi.c')
-rw-r--r--src/misc/nm/nmApi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/misc/nm/nmApi.c b/src/misc/nm/nmApi.c
index 3a9ac074..e44d1ef9 100644
--- a/src/misc/nm/nmApi.c
+++ b/src/misc/nm/nmApi.c
@@ -46,8 +46,8 @@ Nm_Man_t * Nm_ManCreate( int nSize )
p = ALLOC( Nm_Man_t, 1 );
memset( p, 0, sizeof(Nm_Man_t) );
// set the parameters
- p->nSizeFactor = 3; // determined how much larger the table should be compared to data in it
- p->nGrowthFactor = 3; // determined how much the table grows after resizing
+ p->nSizeFactor = 4; // determined how much larger the table should be compared to data in it
+ p->nGrowthFactor = 4; // determined how much the table grows after resizing
// allocate and clean the bins
p->nBins = Cudd_PrimeNm(p->nSizeFactor*nSize);
p->pBinsI2N = ALLOC( Nm_Entry_t *, p->nBins );