tactic_skip method

Z3_tactic tactic_skip(
  1. Z3_context c
)

\brief Return a tactic that just return the given goal.

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

Implementation

Z3_tactic tactic_skip(
  Z3_context c,
) {
  return _tactic_skip(
    c,
  );
}