summaryrefslogtreecommitdiffstats
path: root/src/map/mapper/mapperCreate.c
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2015-04-24 14:51:34 -0700
committerAlan Mishchenko <alanmi@berkeley.edu>2015-04-24 14:51:34 -0700
commit9e20b3016ddb16993687cffc050c3cee127f677d (patch)
treef92058fe08605320b4a3ed42318821c5fafed29e /src/map/mapper/mapperCreate.c
parent3708acbf469432e540fe5075f746028fcdaa27cb (diff)
downloadabc-9e20b3016ddb16993687cffc050c3cee127f677d.tar.gz
abc-9e20b3016ddb16993687cffc050c3cee127f677d.tar.bz2
abc-9e20b3016ddb16993687cffc050c3cee127f677d.zip
Adding switch 'map -f' to not use large gates for high-fanout nodes (disabled by default).
Diffstat (limited to 'src/map/mapper/mapperCreate.c')
-rw-r--r--src/map/mapper/mapperCreate.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/map/mapper/mapperCreate.c b/src/map/mapper/mapperCreate.c
index 6914724c..e7ad4819 100644
--- a/src/map/mapper/mapperCreate.c
+++ b/src/map/mapper/mapperCreate.c
@@ -73,6 +73,7 @@ void Map_ManSetChoiceNodeNum( Map_Man_t * p, int nChoiceNodes ) { p->
void Map_ManSetChoiceNum( Map_Man_t * p, int nChoices ) { p->nChoices = nChoices; }
void Map_ManSetVerbose( Map_Man_t * p, int fVerbose ) { p->fVerbose = fVerbose; }
void Map_ManSetSwitching( Map_Man_t * p, int fSwitching ) { p->fSwitching = fSwitching; }
+void Map_ManSetSkipFanout( Map_Man_t * p, int fSkipFanout ) { p->fSkipFanout = fSkipFanout; }
/**Function*************************************************************