tactic_inc_ref method
\brief Increment the reference counter of the given tactic.
def_API('Z3_tactic_inc_ref', VOID, (_in(CONTEXT), _in(TACTIC)))
Implementation
void tactic_inc_ref(
Z3_context c,
Z3_tactic t,
) {
return _tactic_inc_ref(
c,
t,
);
}