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

Method ToFPExprArray

src/api/java/ASTVector.java:192–199  ·  view source on GitHub ↗

Translates the AST vector into an FPExpr[]

()

Source from the content-addressed store, hash-verified

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[]

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