3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-03 09:50:23 +00:00
Signed-off-by: Lev Nachmanson <levnach@microsoft.com>
This commit is contained in:
Lev Nachmanson 2025-06-30 13:52:52 -07:00
parent bc96e9e9ae
commit fd4cc17689
11 changed files with 71 additions and 1 deletions

View file

@ -146,6 +146,11 @@ namespace {
m_context.collect_statistics(st);
}
void flush_statistics() override {
// Force aggregation of theory statistics before collecting them
m_context.flush_statistics();
}
lbool get_consequences_core(expr_ref_vector const& assumptions, expr_ref_vector const& vars, expr_ref_vector& conseq) override {
expr_ref_vector unfixed(m_context.m());
return m_context.get_consequences(assumptions, vars, conseq, unfixed);