mk_probe method

Z3_probe mk_probe(
  1. Z3_context c,
  2. Z3_string name
)

\brief Return a probe associated with the given name. The complete list of probes may be obtained using the procedures #Z3_get_num_probes and #Z3_get_probe_name. It may also be obtained using the command \ccode{(help-tactic)} in the SMT 2.0 front-end.

Probes are used to inspect a goal (aka problem) and collect information that may be used to decide which solver and/or preprocessing step will be used.

def_API('Z3_mk_probe', PROBE, (_in(CONTEXT), _in(STRING)))

Implementation

Z3_probe mk_probe(
  Z3_context c,
  Z3_string name,
) {
  return _mk_probe(
    c,
    name,
  );
}