3
0
Fork 0
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:
Dongjae Lee 2025-06-24 23:13:44 +09:00 committed by GitHub
parent 98043873d0
commit 3916c451e5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -11361,7 +11361,7 @@ def SeqFoldLeftI(f, i, a, s):
ctx = _get_ctx2(f, s)
s = _coerce_seq(s, ctx)
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)
def StrToInt(s):