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:
parent
0ec567fe15
commit
5d8d42b1fa
|
@ -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)));
|
||||
|
|
Loading…
Reference in a new issue