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

Method mkTupleSort

src/api/java/Context.java:276–284  ·  view source on GitHub ↗

Create a new tuple sort.

(Symbol name, Symbol[] fieldNames,
            Sort[] fieldSorts)

Source from the content-addressed store, hash-verified

274 * Create a new tuple sort.
275 **/
276 public TupleSort mkTupleSort(Symbol name, Symbol[] fieldNames,
277 Sort[] fieldSorts)
278 {
279 checkContextMatch(name);
280 checkContextMatch(fieldNames);
281 checkContextMatch(fieldSorts);
282 return new TupleSort(this, name, fieldNames.length, fieldNames,
283 fieldSorts);
284 }
285
286 /**
287 * Create a new enumeration sort.

Callers 5

TupleSortMethod · 0.80
tupleExampleMethod · 0.80
evalExample2Method · 0.80
tupleExampleMethod · 0.80
evalExample2Method · 0.80

Calls 1

checkContextMatchMethod · 0.95

Tested by

no test coverage detected