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:
parent
65885f7eba
commit
ff7c949be8
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue