3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 09:05:31 +00:00

fix #4437, not really interesting bug as debug assertion is really for non-interrupted flow

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-06-02 18:41:26 -07:00
parent df75792e9c
commit 04829e6b7a
2 changed files with 6 additions and 2 deletions

View file

@ -2054,7 +2054,7 @@ public class Context implements AutoCloseable {
public SeqExpr MkNth(SeqExpr s, Expr index)
{
checkContextMatch(s, index);
return (SeqExpr) Expr.create(this, Native.Z3_mkSeqNth(nCtx(), s.getNativeObject(), index.getNativeObject()));
return (SeqExpr) Expr.create(this, Native.mkSeqNth(nCtx(), s.getNativeObject(), index.getNativeObject()));
}