diff options
Diffstat (limited to 'src/map')
-rw-r--r-- | src/map/fpga/fpgaCreate.c | 2 | ||||
-rw-r--r-- | src/map/mapper/mapperCreate.c | 1 | ||||
-rw-r--r-- | src/map/mio/mioFunc.c | 2 | ||||
-rw-r--r-- | src/map/mio/mioUtils.c | 2 |
4 files changed, 3 insertions, 4 deletions
diff --git a/src/map/fpga/fpgaCreate.c b/src/map/fpga/fpgaCreate.c index fc6577fa..aae49f4c 100644 --- a/src/map/fpga/fpgaCreate.c +++ b/src/map/fpga/fpgaCreate.c @@ -172,7 +172,7 @@ Fpga_Man_t * Fpga_ManCreate( int nInputs, int nOutputs, int fVerbose ) p->fAreaRecovery = 1; p->fTree = 0; p->fRefCount = 1; - p->fEpsilon = (float)0.00001; + p->fEpsilon = (float)0.001; Fpga_TableCreate( p ); //if ( p->fVerbose ) diff --git a/src/map/mapper/mapperCreate.c b/src/map/mapper/mapperCreate.c index 4d7ca7d0..826d6287 100644 --- a/src/map/mapper/mapperCreate.c +++ b/src/map/mapper/mapperCreate.c @@ -193,7 +193,6 @@ Map_Man_t * Map_ManCreate( int nInputs, int nOutputs, int fVerbose ) p->pSuperLib = Abc_FrameReadLibSuper(Abc_FrameGetGlobalFrame()); p->nVarsMax = p->pSuperLib->nVarsMax; p->fVerbose = fVerbose; -// p->fEpsilon = (float)0.00001; p->fEpsilon = (float)0.001; assert( p->nVarsMax > 0 ); diff --git a/src/map/mio/mioFunc.c b/src/map/mio/mioFunc.c index 88a7c89c..24b2fecb 100644 --- a/src/map/mio/mioFunc.c +++ b/src/map/mio/mioFunc.c @@ -213,7 +213,7 @@ int Mio_GateParseFormula( Mio_Gate_t * pGate ) Cudd_Ref( pGate->bFunc ); // derive the cover (SOP) - pGate->pSop = Abc_ConvertBddToSop( pGate->pLib->pMmFlex, dd, pGate->bFunc, nPins, pGate->pLib->vCube, -1 ); + pGate->pSop = Abc_ConvertBddToSop( pGate->pLib->pMmFlex, dd, pGate->bFunc, pGate->bFunc, nPins, pGate->pLib->vCube, -1 ); return 0; } diff --git a/src/map/mio/mioUtils.c b/src/map/mio/mioUtils.c index aa373783..15f32890 100644 --- a/src/map/mio/mioUtils.c +++ b/src/map/mio/mioUtils.c @@ -48,7 +48,7 @@ void Mio_LibraryDelete( Mio_Library_t * pLib ) if ( pLib == NULL ) return; // free the bindings of nodes to gates from this library for all networks -// Mv_FrameFreeNetworkBindings( Mv_FrameGetGlobalFrame() ); + Abc_FrameUnmapAllNetworks( Abc_FrameGetGlobalFrame() ); // free the library FREE( pLib->pName ); Mio_LibraryForEachGateSafe( pLib, pGate, pGate2 ) |