mirror of
https://github.com/Z3Prover/z3
synced 2025-08-23 03:27:52 +00:00
bug fixes to LUT extraction, bug fix for real value case of freedom intervals
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
806ee85759
commit
c46e36ce58
9 changed files with 38 additions and 17 deletions
|
@ -36,7 +36,6 @@ namespace sat {
|
|||
struct config {
|
||||
bool m_enable_units; // enable learning units
|
||||
bool m_enable_dont_cares; // enable applying don't cares to LUTs
|
||||
bool m_enable_lut; // enable lut finding
|
||||
bool m_learn_implies; // learn binary clauses
|
||||
bool m_learned2aig; // add learned clauses to AIGs used by cut-set enumeration
|
||||
bool m_validate_cuts; // enable direct validation of generated cuts
|
||||
|
@ -45,7 +44,6 @@ namespace sat {
|
|||
config():
|
||||
m_enable_units(true),
|
||||
m_enable_dont_cares(true),
|
||||
m_enable_lut(false),
|
||||
m_learn_implies(false),
|
||||
m_learned2aig(true),
|
||||
m_validate_cuts(false),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue