Translates the AST vector into an FPExpr[]
()
| 190 | * Translates the AST vector into an FPExpr[] |
| 191 | * */ |
| 192 | public FPExpr[] ToFPExprArray() |
| 193 | { |
| 194 | int n = size(); |
| 195 | FPExpr[] res = new FPExpr[n]; |
| 196 | for (int i = 0; i < n; i++) |
| 197 | res[i] = (FPExpr)Expr.create(getContext(), get(i).getNativeObject()); |
| 198 | return res; |
| 199 | } |
| 200 | |
| 201 | /** |
| 202 | * Translates the AST vector into an FPRMExpr[] |
nothing calls this directly
no test coverage detected