mirror of
https://github.com/Z3Prover/z3
synced 2025-04-22 16:45:31 +00:00
[z3.py] Fix incorrect call to _get_ctx in SeqMapI (#7610)
This commit is contained in:
parent
8d81a2dcaf
commit
eb4e28d5d4
1 changed files with 1 additions and 1 deletions
|
@ -11341,7 +11341,7 @@ def SeqMap(f, s):
|
|||
|
||||
def SeqMapI(f, i, s):
|
||||
"""Map function 'f' over sequence 's' at index 'i'"""
|
||||
ctx = _get_ctx(f, s)
|
||||
ctx = _get_ctx2(f, s)
|
||||
s = _coerce_seq(s, ctx)
|
||||
if not is_expr(i):
|
||||
i = _py2expr(i)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue