3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-13 12:28:44 +00:00
This commit is contained in:
Declan Hwang 2023-03-10 02:29:30 +09:00 committed by GitHub
parent 1612b57e1a
commit cf4df08fd0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11343,7 +11343,7 @@ def Range(lo, hi, ctx=None):
return ReRef(Z3_mk_re_range(lo.ctx_ref(), lo.ast, hi.ast), lo.ctx)
def Diff(a, b, ctx=None):
"""Create the difference regular epression
"""Create the difference regular expression
"""
return ReRef(Z3_mk_re_diff(a.ctx_ref(), a.ast, b.ast), a.ctx)