mirror of
https://github.com/Z3Prover/z3
synced 2025-04-22 16:45:31 +00:00
bug fix. Handle unknown without model (#4443)
This commit is contained in:
parent
9eedd4ecd6
commit
b7d7ff38cb
1 changed files with 1 additions and 1 deletions
|
@ -3491,7 +3491,7 @@ lbool context::expand_pob(pob& n, pob_ref_buffer &out)
|
|||
lbool res = n.pt ().is_reachable (n, &cube, &model, uses_level, is_concrete, r,
|
||||
reach_pred_used, num_reuse_reach);
|
||||
if (model) model->set_model_completion(false);
|
||||
if (res == l_undef) res = handle_unknown(n, r, *model);
|
||||
if (res == l_undef && model) res = handle_unknown(n, r, *model);
|
||||
|
||||
checkpoint ();
|
||||
IF_VERBOSE (1, verbose_stream () << "." << std::flush;);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue