mirror of
https://github.com/Z3Prover/z3
synced 2025-07-18 02:16:40 +00:00
first eufi example running
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
2288931b46
commit
74621e0b7d
26 changed files with 80 additions and 105 deletions
|
@ -48,9 +48,11 @@ void simple_check_sat_result::collect_statistics(statistics & st) const {
|
|||
st.copy(m_stats);
|
||||
}
|
||||
|
||||
void simple_check_sat_result::get_unsat_core(ptr_vector<expr> & r) {
|
||||
if (m_status == l_false)
|
||||
void simple_check_sat_result::get_unsat_core(expr_ref_vector & r) {
|
||||
if (m_status == l_false) {
|
||||
r.reset();
|
||||
r.append(m_core.size(), m_core.c_ptr());
|
||||
}
|
||||
}
|
||||
|
||||
void simple_check_sat_result::get_model_core(model_ref & m) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue