fixedpoint_inc_ref method
\brief Increment the reference counter of the given fixedpoint context
def_API('Z3_fixedpoint_inc_ref', VOID, (_in(CONTEXT), _in(FIXEDPOINT)))
Implementation
void fixedpoint_inc_ref(
Z3_context c,
Z3_fixedpoint d,
) {
return _fixedpoint_inc_ref(
c,
d,
);
}