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

Method mkArraySort

src/api/java/Context.java:230–235  ·  view source on GitHub ↗

Create a new array sort.

(D domain, R range)

Source from the content-addressed store, hash-verified

228 * Create a new array sort.
229 **/
230 public final <D extends Sort, R extends Sort> ArraySort<D, R> mkArraySort(D domain, R range)
231 {
232 checkContextMatch(domain);
233 checkContextMatch(range);
234 return new ArraySort<>(this, domain, range);
235 }
236
237
238 /**

Callers 8

mkArrayConstMethod · 0.95
ArraySortMethod · 0.80
arrayExample1Method · 0.80
arrayExample2Method · 0.80
arrayExample3Method · 0.80
arrayExample1Method · 0.80
arrayExample2Method · 0.80
arrayExample3Method · 0.80

Calls 1

checkContextMatchMethod · 0.95

Tested by

no test coverage detected