Translates the AST vector into an IntExpr[]
()
| 214 | * Translates the AST vector into an IntExpr[] |
| 215 | * */ |
| 216 | public IntExpr[] ToIntExprArray() |
| 217 | { |
| 218 | int n = size(); |
| 219 | IntExpr[] res = new IntExpr[n]; |
| 220 | for (int i = 0; i < n; i++) |
| 221 | res[i] = (IntExpr)Expr.create(getContext(), get(i).getNativeObject()); |
| 222 | return res; |
| 223 | } |
| 224 | |
| 225 | /** |
| 226 | * Translates the AST vector into an RealExpr[] |
nothing calls this directly
no test coverage detected