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

Method getBoundVariableNames

src/api/java/Quantifier.java:112–120  ·  view source on GitHub ↗

The symbols for the bound variables. @throws Z3Exception

()

Source from the content-addressed store, hash-verified

110 * @throws Z3Exception
111 **/
112 public Symbol[] getBoundVariableNames()
113 {
114 int n = getNumBound();
115 Symbol[] res = new Symbol[n];
116 for (int i = 0; i < n; i++)
117 res[i] = Symbol.create(getContext(), Native.getQuantifierBoundName(
118 getContext().nCtx(), getNativeObject(), i));
119 return res;
120 }
121
122 /**
123 * 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