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

Method getBoundVariableNames

src/api/java/Lambda.java:42–50  ·  view source on GitHub ↗

The symbols for the bound variables. @throws Z3Exception

()

Source from the content-addressed store, hash-verified

40 * @throws Z3Exception
41 **/
42 public Symbol[] getBoundVariableNames()
43 {
44 int n = getNumBound();
45 Symbol[] res = new Symbol[n];
46 for (int i = 0; i < n; i++)
47 res[i] = Symbol.create(getContext(), Native.getQuantifierBoundName(
48 getContext().nCtx(), getNativeObject(), i));
49 return res;
50 }
51
52 /**
53 * The sorts of the bound variables.

Callers

nothing calls this directly

Calls 5

getNumBoundMethod · 0.95
createMethod · 0.95
getContextMethod · 0.80
nCtxMethod · 0.80
getNativeObjectMethod · 0.80

Tested by

no test coverage detected