mirror of
https://github.com/Z3Prover/z3
synced 2025-10-07 16:31:55 +00:00
Disable a few rule transformations
For this prototype, we need to disable three rule transformations, namely coi_filter, similarity_compressor, rule_inliner. But disabling the inliner causes problems with the tracer in the datalog interpreter. Since a new proprocessor is underway, we skip the problematic trace outputs for now. Signed-off-by: Alex Horn <t-alexh@microsoft.com>
This commit is contained in:
parent
565c0f785f
commit
c8a123b7dd
2 changed files with 8 additions and 2 deletions
|
@ -292,17 +292,23 @@ namespace datalog {
|
|||
|
||||
void rel_context::transform_rules() {
|
||||
rule_transformer transf(m_context);
|
||||
#ifdef _MIN_DONE_
|
||||
transf.register_plugin(alloc(mk_coi_filter, m_context));
|
||||
#endif
|
||||
transf.register_plugin(alloc(mk_filter_rules, m_context));
|
||||
transf.register_plugin(alloc(mk_simple_joins, m_context));
|
||||
if (m_context.unbound_compressor()) {
|
||||
transf.register_plugin(alloc(mk_unbound_compressor, m_context));
|
||||
}
|
||||
#ifdef _MIN_DONE_
|
||||
if (m_context.similarity_compressor()) {
|
||||
transf.register_plugin(alloc(mk_similarity_compressor, m_context));
|
||||
}
|
||||
#endif
|
||||
transf.register_plugin(alloc(mk_partial_equivalence_transformer, m_context));
|
||||
#ifdef _MIN_DONE_
|
||||
transf.register_plugin(alloc(mk_rule_inliner, m_context));
|
||||
#endif
|
||||
transf.register_plugin(alloc(mk_interp_tail_simplifier, m_context));
|
||||
transf.register_plugin(alloc(mk_separate_negated_tails, m_context));
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue