3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-13 12:28:44 +00:00

Update the mkConstant parameter type (#4996)

This commit is contained in:
Malte Mues 2021-02-05 01:17:49 +01:00 committed by GitHub
parent 0ec567fe15
commit 5d8d42b1fa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2018,7 +2018,7 @@ public class Context implements AutoCloseable {
/**
* Concatenate sequences.
*/
public <R extends Sort> SeqExpr<R> mkConcat(SeqSort<R>... t)
public <R extends Sort> SeqExpr<R> mkConcat(Expr<SeqSort<R>>... t)
{
checkContextMatch(t);
return (SeqExpr<R>) Expr.create(this, Native.mkSeqConcat(nCtx(), t.length, AST.arrayToNative(t)));