mirror of
https://github.com/Z3Prover/z3
synced 2025-04-14 21:08:46 +00:00
fix crash during cancelation
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
61c25fdc8e
commit
c32bfb5ecd
|
@ -1347,7 +1347,7 @@ lbool pred_transformer::is_reachable(pob& n, expr_ref_vector* core,
|
||||||
|
|
||||||
if (is_sat == l_true || is_sat == l_undef) {
|
if (is_sat == l_true || is_sat == l_undef) {
|
||||||
if (core) { core->reset(); }
|
if (core) { core->reset(); }
|
||||||
if (model) {
|
if (model && *model) {
|
||||||
r = find_rule(**model, is_concrete, reach_pred_used, num_reuse_reach);
|
r = find_rule(**model, is_concrete, reach_pred_used, num_reuse_reach);
|
||||||
TRACE ("spacer", tout << "reachable "
|
TRACE ("spacer", tout << "reachable "
|
||||||
<< "is_concrete " << is_concrete << " rused: ";
|
<< "is_concrete " << is_concrete << " rused: ";
|
||||||
|
|
Loading…
Reference in a new issue