mk_fixedpoint method

Z3_fixedpoint mk_fixedpoint(
  1. Z3_context c
)

@name Fixedpoint facilities / /**@{/ /** \brief Create a new fixedpoint context.

\remark User must use #Z3_fixedpoint_inc_ref and #Z3_fixedpoint_dec_ref to manage fixedpoint objects. Even if the context was created using #Z3_mk_context instead of #Z3_mk_context_rc.

def_API('Z3_mk_fixedpoint', FIXEDPOINT, (_in(CONTEXT), ))

Implementation

Z3_fixedpoint mk_fixedpoint(
  Z3_context c,
) {
  return _mk_fixedpoint(
    c,
  );
}