Translates the AST vector into an Expr[]
()
| 119 | * Translates the AST vector into an Expr[] |
| 120 | * */ |
| 121 | public Expr<?>[] ToExprArray() { |
| 122 | int n = size(); |
| 123 | Expr<?>[] res = new Expr[n]; |
| 124 | for (int i = 0; i < n; i++) |
| 125 | res[i] = Expr.create(getContext(), get(i).getNativeObject()); |
| 126 | return res; |
| 127 | } |
| 128 | |
| 129 | /** |
| 130 | * Translates the AST vector into an BoolExpr[] |
no test coverage detected