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

Method getBoundVariableSorts

src/api/java/Quantifier.java:127–135  ·  view source on GitHub ↗

The sorts of the bound variables. @throws Z3Exception

()

Source from the content-addressed store, hash-verified

125 * @throws Z3Exception
126 **/
127 public Sort[] getBoundVariableSorts()
128 {
129 int n = getNumBound();
130 Sort[] res = new Sort[n];
131 for (int i = 0; i < n; i++)
132 res[i] = Sort.create(getContext(), Native.getQuantifierBoundSort(
133 getContext().nCtx(), getNativeObject(), i));
134 return res;
135 }
136
137 /**
138 * The body of the quantifier.

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