3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 17:44:08 +00:00

Proposed fix for #7451 (#7452)

This commit is contained in:
Linus 2024-11-13 18:11:40 +01:00 committed by GitHub
parent c0e748a51a
commit d3009dabfc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -11661,7 +11661,7 @@ def user_prop_diseq(ctx, cb, x, y):
prop.diseq(x, y)
prop.cb = old_cb
def user_prop_decide(ctx, cb, t, idx, phase):
def user_prop_decide(ctx, cb, t_ref, idx, phase):
prop = _prop_closures.get(ctx)
old_cb = prop.cb
prop.cb = cb
@ -11725,6 +11725,7 @@ class UserPropagateBase:
self.final = None
self.eq = None
self.diseq = None
self.decide = None
self.created = None
if ctx:
self.fresh_ctx = ctx