3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-05-17 15:39:27 +00:00

Properly extract justifications from subsolver

This commit is contained in:
CEisenhofer 2026-04-01 16:58:26 +02:00
parent e25e93503b
commit 36b01a51f1
6 changed files with 74 additions and 38 deletions

View file

@ -93,6 +93,10 @@ namespace smt {
return m_imp->m_kernel.get_num_asserted_formulas();
}
void kernel::get_formulas(ptr_vector<expr>& r) const {
return m_imp->m_kernel.get_asserted_formulas(r);
}
expr* kernel::get_formula(unsigned i) const {
return m_imp->m_kernel.get_asserted_formula(i);
}