3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-06-06 06:03:23 +00:00

z3_assert -> _z3_assert

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2018-09-28 16:38:43 -07:00
parent e0490450f3
commit 6dcec4ce79

View file

@ -4301,7 +4301,7 @@ def ArraySort(*sig):
""" """
sig = _get_args(sig) sig = _get_args(sig)
if __debug__: if __debug__:
z3_assert(len(sig) > 1, "At least two arguments expected") _z3_assert(len(sig) > 1, "At least two arguments expected")
arity = len(sig) - 1 arity = len(sig) - 1
r = sig[arity] r = sig[arity]
d = sig[0] d = sig[0]