3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 17:44:08 +00:00

add option to bypass compression of unbound tails, issue #738

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2016-09-16 14:56:10 -07:00
parent 7a3308110c
commit 7f29674842
6 changed files with 10 additions and 0 deletions

View file

@ -4,6 +4,7 @@ z3_add_component(rewriter
array_rewriter.cpp array_rewriter.cpp
ast_counter.cpp ast_counter.cpp
bool_rewriter.cpp bool_rewriter.cpp
bv_bounds.cpp
bv_rewriter.cpp bv_rewriter.cpp
datatype_rewriter.cpp datatype_rewriter.cpp
der.cpp der.cpp

View file

@ -5,6 +5,7 @@ z3_add_component(bv_tactics
bv1_blaster_tactic.cpp bv1_blaster_tactic.cpp
bvarray2uf_rewriter.cpp bvarray2uf_rewriter.cpp
bvarray2uf_tactic.cpp bvarray2uf_tactic.cpp
bv_bound_chk_tactic.cpp
bv_bounds_tactic.cpp bv_bounds_tactic.cpp
bv_size_reduction_tactic.cpp bv_size_reduction_tactic.cpp
dt2bv_tactic.cpp dt2bv_tactic.cpp

View file

@ -303,6 +303,7 @@ namespace datalog {
bool context::karr() const { return m_params->xform_karr(); } bool context::karr() const { return m_params->xform_karr(); }
bool context::scale() const { return m_params->xform_scale(); } bool context::scale() const { return m_params->xform_scale(); }
bool context::magic() const { return m_params->xform_magic(); } bool context::magic() const { return m_params->xform_magic(); }
bool context::compress_unbound() const { return m_params->xform_compress_unbound(); }
bool context::quantify_arrays() const { return m_params->xform_quantify_arrays(); } bool context::quantify_arrays() const { return m_params->xform_quantify_arrays(); }
bool context::instantiate_quantifiers() const { return m_params->xform_instantiate_quantifiers(); } bool context::instantiate_quantifiers() const { return m_params->xform_instantiate_quantifiers(); }

View file

@ -272,6 +272,7 @@ namespace datalog {
bool karr() const; bool karr() const;
bool scale() const; bool scale() const;
bool magic() const; bool magic() const;
bool compress_unbound() const;
bool quantify_arrays() const; bool quantify_arrays() const;
bool instantiate_quantifiers() const; bool instantiate_quantifiers() const;
bool xform_bit_blast() const; bool xform_bit_blast() const;

View file

@ -131,6 +131,7 @@ def_module_params('fixedpoint',
('xform.inline_eager', BOOL, True, "try eager inlining of rules"), ('xform.inline_eager', BOOL, True, "try eager inlining of rules"),
('xform.inline_linear_branch', BOOL, False, ('xform.inline_linear_branch', BOOL, False,
"try linear inlining method with potential expansion"), "try linear inlining method with potential expansion"),
('xform.compress_unbound', BOOL, True, "compress tails with unbound variables"),
('xform.fix_unbound_vars', BOOL, False, "fix unbound variables in tail"), ('xform.fix_unbound_vars', BOOL, False, "fix unbound variables in tail"),
('xform.unfold_rules', UINT, 0, ('xform.unfold_rules', UINT, 0,
"unfold rules statically using iterative squarring"), "unfold rules statically using iterative squarring"),

View file

@ -344,6 +344,11 @@ namespace datalog {
rule_set * mk_unbound_compressor::operator()(rule_set const & source) { rule_set * mk_unbound_compressor::operator()(rule_set const & source) {
// TODO mc // TODO mc
if (!m_context.compress_unbound()) {
return 0;
}
m_modified = false; m_modified = false;
SASSERT(m_rules.empty()); SASSERT(m_rules.empty());