mirror of
https://github.com/Z3Prover/z3
synced 2025-04-05 17:14:07 +00:00
fix python build break
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
2b2f016f96
commit
eec550e645
|
@ -4298,7 +4298,7 @@ def is_array(a):
|
|||
return isinstance(a, ArrayRef)
|
||||
|
||||
def is_array_sort(a):
|
||||
return _ast_kind(a.ctx(), a.sort()) == Z3_ARRAY_SORT
|
||||
return _ast_kind(a.ctx, a.sort()) == Z3_ARRAY_SORT
|
||||
|
||||
def is_const_array(a):
|
||||
"""Return `True` if `a` is a Z3 constant array.
|
||||
|
|
Loading…
Reference in a new issue