Create an expression representing t[0] + t[1] + ....
(Expr<? extends R>... t)
| 980 | * Create an expression representing {@code t[0] + t[1] + ...}. |
| 981 | **/ |
| 982 | @SafeVarargs |
| 983 | public final <R extends ArithSort> ArithExpr<R> mkAdd(Expr<? extends R>... t) |
| 984 | { |
| 985 | checkContextMatch(t); |
| 986 | return (ArithExpr<R>) Expr.create(this, |
| 987 | Native.mkAdd(nCtx(), t.length, AST.arrayToNative(t))); |
| 988 | } |
| 989 | |
| 990 | /** |
| 991 | * Create an expression representing {@code t[0] * t[1] * ...}. |
no test coverage detected