get_num_probes method
\brief Return the number of builtin probes available in Z3.
\sa Z3_get_probe_name
def_API('Z3_get_num_probes', UINT, (_in(CONTEXT),))
Implementation
int get_num_probes(
Z3_context c,
) {
return _get_num_probes(
c,
);
}