fixedpoint_get_rules method

Z3_ast_vector fixedpoint_get_rules(
  1. Z3_context c,
  2. Z3_fixedpoint f
)

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