fixedpoint_get_rules method
\brief Retrieve set of rules from fixedpoint context.
def_API('Z3_fixedpoint_get_rules', AST_VECTOR, (_in(CONTEXT),_in(FIXEDPOINT)))
Implementation
Z3_ast_vector fixedpoint_get_rules(
Z3_context c,
Z3_fixedpoint f,
) {
return _fixedpoint_get_rules(
c,
f,
);
}