3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-04 02:10:23 +00:00

bit-blaster

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2018-03-31 05:34:11 -07:00
parent a81a8de975
commit a914142c7c
2 changed files with 4 additions and 9 deletions

View file

@ -67,7 +67,6 @@ public:
void operator()(goal_ref const & g) {
SASSERT(g->is_well_sorted());
tactic_report report("aig", *g);
mk_aig_manager mk(*this, g->m());
if (m_aig_per_assertion) {
@ -92,8 +91,10 @@ public:
void operator()(goal_ref const & g, goal_ref_buffer & result) override {
fail_if_proof_generation("aig", g);
tactic_report report("aig", *g);
operator()(g);
g->inc_depth();
TRACE("aig", g->display(tout););
result.push_back(g.get());
}