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)
| 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 | { |
nothing calls this directly
no test coverage detected