tactic_fail method

Z3_tactic tactic_fail(
  1. Z3_context c
)

\brief Return a tactic that always fails.

def_API('Z3_tactic_fail', TACTIC, (_in(CONTEXT),))

Implementation

Z3_tactic tactic_fail(
  Z3_context c,
) {
  return _tactic_fail(
    c,
  );
}