3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-03 01:40:22 +00:00

extract also units from search state

This commit is contained in:
Nikolaj Bjorner 2022-02-07 06:15:49 +02:00
parent d4ea67a6e7
commit 3f3d058567
7 changed files with 36 additions and 1 deletions

View file

@ -318,6 +318,10 @@ namespace {
return m_context.get_formula(idx);
}
void get_units_core(expr_ref_vector& units) override {
m_context.get_units(units);
}
expr_ref_vector cube(expr_ref_vector& vars, unsigned cutoff) override {
ast_manager& m = get_manager();
if (!m_cuber) {