3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-22 16:45:31 +00:00

Fix: call collect_statistics() in virtual_solver

This commit is contained in:
Matteo Marescotti 2018-03-15 16:28:45 -04:00 committed by Arie Gurfinkel
parent 65885f7eba
commit ff7c949be8

View file

@ -80,7 +80,7 @@ public:
void get_unsat_core(ptr_vector<expr> &r) override;
void assert_expr_core(expr *e) override;
void collect_statistics(statistics &st) const override {}
void collect_statistics(statistics &st) const override {m_context.collect_statistics(st);}
void get_model_core(model_ref &m) override {m_context.get_model(m);}
proof* get_proof() override;
std::string reason_unknown() const override