Skip to content

Commit

Permalink
some set helpers and temporal operators
Browse files Browse the repository at this point in the history
  • Loading branch information
philzook58 committed Jan 26, 2025
1 parent 5f4002d commit 1cf7045
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions kdrag/theories/logic/temporal.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ def res(x, y):
y1 = TLift(y1)
if y1.sort() != S:
raise TypeError(f"{y} but expected sort {S}")
assert isinstance(y1, smt.DatatypeRef)
t = smt.FreshInt("t")
return S(smt.Lambda([t], op(x.val[t], y1.val[t])))

Expand Down

0 comments on commit 1cf7045

Please sign in to comment.