get_num_tactics method
\brief Return the number of builtin tactics available in Z3.
\sa Z3_get_tactic_name
def_API('Z3_get_num_tactics', UINT, (_in(CONTEXT),))
Implementation
int get_num_tactics(
Z3_context c,
) {
return _get_num_tactics(
c,
);
}