Skip to content

Commit

Permalink
Proposed fix for #7451 (#7452)
Browse files Browse the repository at this point in the history
  • Loading branch information
linusheck authored Nov 13, 2024
1 parent c0e748a commit d3009da
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/api/python/z3/z3.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -11725,6 +11725,7 @@ def __init__(self, s, ctx=None):
self.final = None
self.eq = None
self.diseq = None
self.decide = None
self.created = None
if ctx:
self.fresh_ctx = ctx
Expand Down

0 comments on commit d3009da

Please sign in to comment.