mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 17:45:32 +00:00
trying to get rid of last simplifier dependency in macros
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
f7ca7409ce
commit
ce04c18a7a
10 changed files with 158 additions and 36 deletions
|
@ -64,7 +64,7 @@ class macro_finder_tactic : public tactic {
|
|||
bv_simplifier_plugin * bvsimp = alloc(bv_simplifier_plugin, m_manager, *bsimp, bv_params);
|
||||
simp.register_plugin(bvsimp);
|
||||
|
||||
macro_manager mm(m_manager, simp);
|
||||
macro_manager mm(m_manager);
|
||||
macro_finder mf(m_manager, mm);
|
||||
|
||||
expr_ref_vector forms(m_manager), new_forms(m_manager);
|
||||
|
|
|
@ -62,7 +62,7 @@ class quasi_macros_tactic : public tactic {
|
|||
bv_simplifier_plugin * bvsimp = alloc(bv_simplifier_plugin, m_manager, *bsimp, bv_params);
|
||||
simp.register_plugin(bvsimp);
|
||||
|
||||
macro_manager mm(m_manager, simp);
|
||||
macro_manager mm(m_manager);
|
||||
quasi_macros qm(m_manager, mm);
|
||||
bool more = true;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue