3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 17:44:08 +00:00

expose fold as well

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2024-05-09 14:56:18 -07:00
parent fc6c4c98e2
commit c7529d0b25

View file

@ -11224,6 +11224,19 @@ def SeqMapI(f, i, s):
i = _py2expr(i)
return _to_expr_ref(Z3_mk_seq_mapi(s.ctx_ref(), f.as_ast(), i.as_ast(), s.as_ast()), ctx)
def SeqFoldLeft(f, a, s):
ctx = _get_ctx2(f, s)
s = _coerce_seq(s, ctx)
a = _py2expr(a)
return _to_expr_ref(Z3_mk_seq_foldl(s.ctx_ref(), f.as_ast(), a.as_ast(), s.as_ast()), ctx)
def SeqFoldLeftI(f, i, a, s):
ctx = _get_ctx2(f, s)
s = _coerce_seq(s, ctx)
a = _py2expr(a)
i = _py2epxr(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):
"""Convert string expression to integer
>>> a = StrToInt("1")