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:
parent
e25e93503b
commit
36b01a51f1
6 changed files with 74 additions and 38 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue