mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 13:28:47 +00:00
Update the mkConstant parameter type (#4996)
This commit is contained in:
parent
0ec567fe15
commit
5d8d42b1fa
|
@ -2018,7 +2018,7 @@ public class Context implements AutoCloseable {
|
||||||
/**
|
/**
|
||||||
* Concatenate sequences.
|
* 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);
|
checkContextMatch(t);
|
||||||
return (SeqExpr<R>) Expr.create(this, Native.mkSeqConcat(nCtx(), t.length, AST.arrayToNative(t)));
|
return (SeqExpr<R>) Expr.create(this, Native.mkSeqConcat(nCtx(), t.length, AST.arrayToNative(t)));
|
||||||
|
|
Loading…
Reference in a new issue