MCPcopy Create free account
hub / github.com/Z3Prover/z3 / ToFPRMExprArray

Method ToFPRMExprArray

src/api/java/ASTVector.java:204–211  ·  view source on GitHub ↗

Translates the AST vector into an FPRMExpr[]

()

Source from the content-addressed store, hash-verified

202 * Translates the AST vector into an FPRMExpr[]
203 * */
204 public FPRMExpr[] ToFPRMExprArray()
205 {
206 int n = size();
207 FPRMExpr[] res = new FPRMExpr[n];
208 for (int i = 0; i < n; i++)
209 res[i] = (FPRMExpr)Expr.create(getContext(), get(i).getNativeObject());
210 return res;
211 }
212
213 /**
214 * Translates the AST vector into an IntExpr[]

Callers

nothing calls this directly

Calls 5

sizeMethod · 0.95
createMethod · 0.95
getMethod · 0.95
getContextMethod · 0.80
getNativeObjectMethod · 0.80

Tested by

no test coverage detected