mirror of
https://github.com/Z3Prover/z3
synced 2025-06-14 01:46:15 +00:00
Fixed array default operator
This commit is contained in:
parent
a1eee6275f
commit
e2f2708a9c
1 changed files with 1 additions and 1 deletions
|
@ -4064,7 +4064,7 @@ def Default(a):
|
||||||
"""
|
"""
|
||||||
if __debug__:
|
if __debug__:
|
||||||
_z3_assert(is_array(a), "First argument must be a Z3 array expression")
|
_z3_assert(is_array(a), "First argument must be a Z3 array expression")
|
||||||
return a.mk_default()
|
return a.default()
|
||||||
|
|
||||||
|
|
||||||
def Store(a, i, v):
|
def Store(a, i, v):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue