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

Method apply

src/api/java/Probe.java:38–43  ·  view source on GitHub ↗

Execute the probe over the goal. @return A probe always produce a double value. "Boolean" probes return 0.0 for false, and a value different from 0.0 for true. @throws Z3Exception

(Goal g)

Source from the content-addressed store, hash-verified

36 * @throws Z3Exception
37 **/
38 public double apply(Goal g)
39 {
40 getContext().checkContextMatch(g);
41 return Native.probeApply(getContext().nCtx(), getNativeObject(),
42 g.getNativeObject());
43 }
44
45 Probe(Context ctx, long obj)
46 {

Callers

nothing calls this directly

Calls 4

checkContextMatchMethod · 0.80
getContextMethod · 0.80
nCtxMethod · 0.80
getNativeObjectMethod · 0.80

Tested by

no test coverage detected