3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-05 17:14:07 +00:00

Handle dynamic sort of Nth()'s return value in the Python API

This commit is contained in:
Phillip Schanely 2019-08-13 06:12:14 -04:00 committed by Nikolaj Bjorner
parent e89bb37156
commit 0093157bb9

View file

@ -9976,7 +9976,7 @@ class SeqRef(ExprRef):
def __getitem__(self, i):
if _is_int(i):
i = IntVal(i, self.ctx)
return SeqRef(Z3_mk_seq_nth(self.ctx_ref(), self.as_ast(), i.as_ast()), self.ctx)
return _to_expr_ref(Z3_mk_seq_nth(self.ctx_ref(), self.as_ast(), i.as_ast()), self.ctx)
def at(self, i):
if _is_int(i):