fixedpoint_get_assertions method

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

\brief Retrieve set of background assertions from fixedpoint context.

def_API('Z3_fixedpoint_get_assertions', AST_VECTOR, (_in(CONTEXT),_in(FIXEDPOINT)))

Implementation

Z3_ast_vector fixedpoint_get_assertions(
  Z3_context c,
  Z3_fixedpoint f,
) {
  return _fixedpoint_get_assertions(
    c,
    f,
  );
}