summaryrefslogtreecommitdiffstats
path: root/src/map/if/ifMan.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2008-03-05 08:01:00 -0800
committerAlan Mishchenko <alanmi@berkeley.edu>2008-03-05 08:01:00 -0800
commit8bd19a27bf2f50b7502d01bbbbe71714c154cd2f (patch)
treeb36f9f438158f8d95e932728ab4af809a63838d1 /src/map/if/ifMan.c
parent320c429bc46728c1faddfc561c166810aa134a04 (diff)
downloadabc-8bd19a27bf2f50b7502d01bbbbe71714c154cd2f.tar.gz
abc-8bd19a27bf2f50b7502d01bbbbe71714c154cd2f.tar.bz2
abc-8bd19a27bf2f50b7502d01bbbbe71714c154cd2f.zip
Version abc80305
Diffstat (limited to 'src/map/if/ifMan.c')
-rw-r--r--src/map/if/ifMan.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/if/ifMan.c b/src/map/if/ifMan.c
index 6b21919b..1528b08c 100644
--- a/src/map/if/ifMan.c
+++ b/src/map/if/ifMan.c
@@ -51,7 +51,7 @@ If_Man_t * If_ManStart( If_Par_t * pPars )
p = ALLOC( If_Man_t, 1 );
memset( p, 0, sizeof(If_Man_t) );
p->pPars = pPars;
- p->fEpsilon = (float)0.001;
+ p->fEpsilon = pPars->Epsilon;
// allocate arrays for nodes
p->vCis = Vec_PtrAlloc( 100 );
p->vCos = Vec_PtrAlloc( 100 );
@@ -77,7 +77,7 @@ If_Man_t * If_ManStart( If_Par_t * pPars )
p->puTemp[3] = p->puTemp[2] + p->nTruthWords;
// create the constant node
p->pConst1 = If_ManSetupObj( p );
- p->pConst1->Type = IF_CONST1;
+ p->pConst1->Type = IF_CONST1;
p->pConst1->fPhase = 1;
p->nObjs[IF_CONST1]++;
return p;