tactic_fail_if method

Z3_tactic tactic_fail_if(
  1. Z3_context c,
  2. Z3_probe p
)

\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,
  );
}