tactic_and_then method
\brief Return a tactic that applies \c t1 to a given goal and \c t2 to every subgoal produced by \c t1.
def_API('Z3_tactic_and_then', TACTIC, (_in(CONTEXT), _in(TACTIC), _in(TACTIC)))
Implementation
Z3_tactic tactic_and_then(
Z3_context c,
Z3_tactic t1,
Z3_tactic t2,
) {
return _tactic_and_then(
c,
t1,
t2,
);
}