mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
na
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
9f2b18cac5
commit
d74ff29c25
|
@ -131,7 +131,7 @@ public:
|
|||
|
||||
~dom_simplify_tactic() override;
|
||||
|
||||
char const* dom_simplify_tactic::name() const { return "dom_simplify"; }
|
||||
char const* dom_simplify_tactic::name() const override { return "dom_simplify"; }
|
||||
|
||||
tactic * translate(ast_manager & m) override;
|
||||
void updt_params(params_ref const & p) override {}
|
||||
|
|
|
@ -105,12 +105,12 @@ class solver_subsumption_tactic : public tactic {
|
|||
vector<std::pair<unsigned, expr_ref>> pre(mid, fmls.data());
|
||||
vector<std::pair<unsigned, expr_ref>> post(fmls.size() - mid, fmls.data() + mid);
|
||||
push();
|
||||
for (auto [p, f] : post)
|
||||
for (auto const& [p, f] : post)
|
||||
assert_expr(f);
|
||||
simplify(pre, change);
|
||||
pop();
|
||||
push();
|
||||
for (auto [p, f] : pre)
|
||||
for (auto const& [p, f] : pre)
|
||||
assert_expr(f);
|
||||
simplify(post, change);
|
||||
pop();
|
||||
|
|
Loading…
Reference in a new issue