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

Method ToBoolExprArray

src/api/java/ASTVector.java:132–139  ·  view source on GitHub ↗

Translates the AST vector into an BoolExpr[]

()

Source from the content-addressed store, hash-verified

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

Callers 14

getUnsatCoreMethod · 0.95
getAssertionsMethod · 0.95
getAssertionsMethod · 0.95
getUnsatCoreMethod · 0.95
getUnitsMethod · 0.95
getNonUnitsMethod · 0.95
getTrailMethod · 0.95
computeNextMethod · 0.95
parseSMTLIB2StringMethod · 0.95
parseSMTLIB2FileMethod · 0.95
getRulesMethod · 0.95
getAssertionsMethod · 0.95

Calls 5

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

Tested by

no test coverage detected