mirror of
https://github.com/Z3Prover/z3
synced 2025-08-09 04:31:24 +00:00
Fix: typo in z3 python api (#7693)
This commit is contained in:
parent
98043873d0
commit
3916c451e5
1 changed files with 1 additions and 1 deletions
|
@ -11361,7 +11361,7 @@ def SeqFoldLeftI(f, i, a, s):
|
||||||
ctx = _get_ctx2(f, s)
|
ctx = _get_ctx2(f, s)
|
||||||
s = _coerce_seq(s, ctx)
|
s = _coerce_seq(s, ctx)
|
||||||
a = _py2expr(a)
|
a = _py2expr(a)
|
||||||
i = _py2epxr(i)
|
i = _py2expr(i)
|
||||||
return _to_expr_ref(Z3_mk_seq_foldli(s.ctx_ref(), f.as_ast(), i.as_ast(), a.as_ast(), s.as_ast()), ctx)
|
return _to_expr_ref(Z3_mk_seq_foldli(s.ctx_ref(), f.as_ast(), i.as_ast(), a.as_ast(), s.as_ast()), ctx)
|
||||||
|
|
||||||
def StrToInt(s):
|
def StrToInt(s):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue