mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 20:05:51 +00:00
enable Boolean propagation in AUFBV to fix inefficiency (bit-blasting destroys simplifications that are possible by simple Boolean propagation). Fixes issue #194
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
68b441770e
commit
d00d6a3506
2 changed files with 2 additions and 2 deletions
|
@ -551,6 +551,7 @@ namespace smt {
|
|||
m_params.m_bv_cc = false;
|
||||
m_params.m_bb_ext_gates = true;
|
||||
m_params.m_nnf_cnf = false;
|
||||
m_params.m_propagate_booleans = true;
|
||||
m_context.register_plugin(alloc(smt::theory_bv, m_manager, m_params, m_params));
|
||||
m_context.register_plugin(alloc(smt::theory_array, m_manager, m_params));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue