diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2015-10-15 15:32:36 -0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2015-10-15 15:32:36 -0700 |
commit | 15a86aefd2f5e27bb8789ce93a85544cdf6f0a72 (patch) | |
tree | c61f77b820bac79d6199ebd6f65064fc44c16df8 /src/opt/sfm/sfm.h | |
parent | 01fc95695c56a5bfd25cd100945859a572a328b6 (diff) | |
download | abc-15a86aefd2f5e27bb8789ce93a85544cdf6f0a72.tar.gz abc-15a86aefd2f5e27bb8789ce93a85544cdf6f0a72.tar.bz2 abc-15a86aefd2f5e27bb8789ce93a85544cdf6f0a72.zip |
Experiments with precomputation and matching.
Diffstat (limited to 'src/opt/sfm/sfm.h')
-rw-r--r-- | src/opt/sfm/sfm.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/opt/sfm/sfm.h b/src/opt/sfm/sfm.h index fc2a9e54..f3557de0 100644 --- a/src/opt/sfm/sfm.h +++ b/src/opt/sfm/sfm.h @@ -53,11 +53,14 @@ struct Sfm_Par_t_ int nGrowthLevel; // the maximum allowed growth in level int nBTLimit; // the maximum number of conflicts in one SAT run int nNodesMax; // the maximum number of nodes to try + int iNodeOne; // one particular node to try int nFirstFixed; // the number of first nodes to be treated as fixed int fRrOnly; // perform redundance removal int fArea; // performs optimization for area int fMoreEffort; // performs high-affort minimization int fZeroCost; // enable zero-cost replacement + int fUseSim; // enable simulation + int fPrintDecs; // enable printing decompositions int fVerbose; // enable basic stats int fVeryVerbose; // enable detailed stats }; |