From c0aa9b6a5dc680af2c9509924a869448ed841150 Mon Sep 17 00:00:00 2001 From: Alan Mishchenko Date: Mon, 21 Jul 2014 13:49:25 -0700 Subject: Adding new command &sopb for resource-aware SOP balancing. --- src/map/if/ifCore.c | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) (limited to 'src/map/if/ifCore.c') diff --git a/src/map/if/ifCore.c b/src/map/if/ifCore.c index 1f2d2ae3..b7eb7bc0 100644 --- a/src/map/if/ifCore.c +++ b/src/map/if/ifCore.c @@ -33,6 +33,39 @@ extern abctime s_MappingTime; /// FUNCTION DEFINITIONS /// //////////////////////////////////////////////////////////////////////// +/**Function************************************************************* + + Synopsis [] + + Description [] + + SideEffects [] + + SeeAlso [] + +***********************************************************************/ +void If_ManSetDefaultPars( If_Par_t * pPars ) +{ + memset( pPars, 0, sizeof(If_Par_t) ); + pPars->nLutSize = -1; + pPars->nCutsMax = 8; + pPars->nFlowIters = 1; + pPars->nAreaIters = 2; + pPars->DelayTarget = -1; + pPars->Epsilon = (float)0.005; + pPars->fPreprocess = 1; + pPars->fArea = 0; + pPars->fFancy = 0; + pPars->fExpRed = 1; + pPars->fLatchPaths = 0; + pPars->fEdge = 1; + pPars->fPower = 0; + pPars->fCutMin = 0; + pPars->fBidec = 0; + pPars->fVerbose = 0; +} + + /**Function************************************************************* Synopsis [] -- cgit v1.2.3