3
0
Fork 0
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:
Nikolaj Bjorner 2019-08-14 21:59:53 -07:00
parent 2b2f016f96
commit eec550e645

View file

@ -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.