mirror of
https://github.com/Z3Prover/z3
synced 2025-07-18 02:16:40 +00:00
implementing model updates
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
92b5301b7f
commit
3de8c193ea
63 changed files with 482 additions and 294 deletions
|
@ -53,7 +53,7 @@ void simple_check_sat_result::get_unsat_core(ptr_vector<expr> & r) {
|
|||
r.append(m_core.size(), m_core.c_ptr());
|
||||
}
|
||||
|
||||
void simple_check_sat_result::get_model(model_ref & m) {
|
||||
void simple_check_sat_result::get_model_core(model_ref & m) {
|
||||
if (m_status != l_false)
|
||||
m = m_model;
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue