Translates the AST vector into an BoolExpr[]
()
| 130 | * Translates the AST vector into an BoolExpr[] |
| 131 | * */ |
| 132 | public BoolExpr[] ToBoolExprArray() |
| 133 | { |
| 134 | int n = size(); |
| 135 | BoolExpr[] res = new BoolExpr[n]; |
| 136 | for (int i = 0; i < n; i++) |
| 137 | res[i] = (BoolExpr) Expr.create(getContext(), get(i).getNativeObject()); |
| 138 | return res; |
| 139 | } |
| 140 | |
| 141 | /** |
| 142 | * Translates the AST vector into an BitVecExpr[] |
no test coverage detected