The arguments of the expression. @throws Z3Exception on error @return an Expr[]
()
| 107 | * @return an Expr[] |
| 108 | **/ |
| 109 | public Expr<?>[] getArgs() |
| 110 | { |
| 111 | int n = getNumArgs(); |
| 112 | Expr<?>[] res = new Expr[n]; |
| 113 | for (int i = 0; i < n; i++) { |
| 114 | res[i] = Expr.create(getContext(), |
| 115 | Native.getAppArg(getContext().nCtx(), getNativeObject(), i)); |
| 116 | } |
| 117 | return res; |
| 118 | } |
| 119 | |
| 120 | /** |
| 121 | * Update the arguments of the expression using the arguments {@code args} |
no test coverage detected