fixedpoint_get_rules_along_trace method
\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,
);
}