tactic_fail_if method
\brief Return a tactic that fails if the probe \c p evaluates to false.
def_API('Z3_tactic_fail_if', TACTIC, (_in(CONTEXT), _in(PROBE)))
Implementation
Z3_tactic tactic_fail_if(
Z3_context c,
Z3_probe p,
) {
return _tactic_fail_if(
c,
p,
);
}