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

Method getDomain

src/api/java/FuncDecl.java:95–105  ·  view source on GitHub ↗

The domain of the function declaration

()

Source from the content-addressed store, hash-verified

93 * The domain of the function declaration
94 **/
95 public Sort[] getDomain()
96 {
97
98 int n = getDomainSize();
99
100 Sort[] res = new Sort[n];
101 for (int i = 0; i < n; i++)
102 res[i] = Sort.create(getContext(),
103 Native.getDomain(getContext().nCtx(), getNativeObject(), i));
104 return res;
105 }
106
107 /**
108 * The range of the function declaration

Callers 6

injAxiomMethod · 0.45
injAxiomAbsMethod · 0.45
commAxiomMethod · 0.45
injAxiomMethod · 0.45
injAxiomAbsMethod · 0.45
commAxiomMethod · 0.45

Calls 5

getDomainSizeMethod · 0.95
createMethod · 0.95
getContextMethod · 0.80
nCtxMethod · 0.80
getNativeObjectMethod · 0.80

Tested by

no test coverage detected