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