3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-04 10:20:23 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-03-14 10:46:03 -07:00
parent b29c77dc87
commit 51e459d02b
55 changed files with 27 additions and 138 deletions

View file

@ -66,7 +66,6 @@ public:
}
void operator()(goal_ref const & g) {
SASSERT(g->is_well_sorted());
mk_aig_manager mk(*this, g->m());
if (m_aig_per_assertion) {
@ -86,7 +85,6 @@ public:
m_aig_manager->max_sharing(r);
m_aig_manager->to_formula(r, *(g.get()));
}
SASSERT(g->is_well_sorted());
}
void operator()(goal_ref const & g, goal_ref_buffer & result) override {
@ -94,7 +92,6 @@ public:
tactic_report report("aig", *g);
operator()(g);
g->inc_depth();
TRACE("aig", g->display(tout););
result.push_back(g.get());
}