fixedpoint_get_rules_along_trace method

Z3_ast_vector fixedpoint_get_rules_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_rules_along_trace', AST_VECTOR, (_in(CONTEXT), _in(FIXEDPOINT)))

Implementation

Z3_ast_vector fixedpoint_get_rules_along_trace(
  Z3_context c,
  Z3_fixedpoint d,
) {
  return _fixedpoint_get_rules_along_trace(
    c,
    d,
  );
}