tactic_par_and_then method
\brief Return a tactic that applies \c t1 to a given goal and then \c t2 to every subgoal produced by \c t1. The subgoals are processed in parallel.
def_API('Z3_tactic_par_and_then', TACTIC, (_in(CONTEXT), _in(TACTIC), _in(TACTIC)))
Implementation
Z3_tactic tactic_par_and_then(
Z3_context c,
Z3_tactic t1,
Z3_tactic t2,
) {
return _tactic_par_and_then(
c,
t1,
t2,
);
}