fixedpoint_get_rule_names_along_trace method

Z3_symbol fixedpoint_get_rule_names_along_trace(
  1. Z3_context c,
  2. Z3_fixedpoint d
)

\brief Obtain the list of rules along the counterexample trace.

def_API('Z3_fixedpoint_get_rule_names_along_trace', SYMBOL, (_in(CONTEXT), _in(FIXEDPOINT)))

Implementation

Z3_symbol fixedpoint_get_rule_names_along_trace(
  Z3_context c,
  Z3_fixedpoint d,
) {
  return _fixedpoint_get_rule_names_along_trace(
    c,
    d,
  );
}