diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2009-01-18 08:01:00 -0800 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2009-01-18 08:01:00 -0800 |
commit | f936cc0680c98ffe51b3a1716c996072d5dbf76c (patch) | |
tree | 784a2a809fb6b972ec6a8e2758ab758ca590d01a /src/aig/dch | |
parent | c9ad5880cc61787dec6d018111b63023407ce0e6 (diff) | |
download | abc-f936cc0680c98ffe51b3a1716c996072d5dbf76c.tar.gz abc-f936cc0680c98ffe51b3a1716c996072d5dbf76c.tar.bz2 abc-f936cc0680c98ffe51b3a1716c996072d5dbf76c.zip |
Version abc90118
Diffstat (limited to 'src/aig/dch')
-rw-r--r-- | src/aig/dch/dch.h | 1 | ||||
-rw-r--r-- | src/aig/dch/dchCore.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/aig/dch/dch.h b/src/aig/dch/dch.h index f1718a78..d0092a5f 100644 --- a/src/aig/dch/dch.h +++ b/src/aig/dch/dch.h @@ -47,6 +47,7 @@ struct Dch_Pars_t_ int fSynthesis; // set to 1 to perform synthesis int fPolarFlip; // uses polarity adjustment int fSimulateTfo; // uses simulatin of TFO classes + int fPower; // uses power-aware rewriting int fVerbose; // verbose stats int timeSynth; // synthesis runtime int nNodesAhead; // the lookahead in terms of nodes diff --git a/src/aig/dch/dchCore.c b/src/aig/dch/dchCore.c index 76813d1a..27c039cf 100644 --- a/src/aig/dch/dchCore.c +++ b/src/aig/dch/dchCore.c @@ -48,6 +48,7 @@ void Dch_ManSetDefaultParams( Dch_Pars_t * p ) p->fSynthesis = 1; // derives three snapshots p->fPolarFlip = 1; // uses polarity adjustment p->fSimulateTfo = 1; // simulate TFO + p->fPower = 0; // power-aware rewriting p->fVerbose = 0; // verbose stats p->nNodesAhead = 1000; // the lookahead in terms of nodes p->nCallsRecycle = 100; // calls to perform before recycling SAT solver |