mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 13:28:47 +00:00
fix typo (#6628)
This commit is contained in:
parent
1612b57e1a
commit
cf4df08fd0
|
@ -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)
|
return ReRef(Z3_mk_re_range(lo.ctx_ref(), lo.ast, hi.ast), lo.ctx)
|
||||||
|
|
||||||
def Diff(a, b, ctx=None):
|
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)
|
return ReRef(Z3_mk_re_diff(a.ctx_ref(), a.ast, b.ast), a.ctx)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue