get_num_tactics method

int get_num_tactics(
  1. Z3_context c
)

\brief Return the number of builtin tactics available in Z3.

\sa Z3_get_tactic_name

def_API('Z3_get_num_tactics', UINT, (_in(CONTEXT),))

Implementation

int get_num_tactics(
  Z3_context c,
) {
  return _get_num_tactics(
    c,
  );
}