mk_partial_order method
\brief create a partial ordering relation over signature \c a and index \c id.
def_API('Z3_mk_partial_order', FUNC_DECL ,(_in(CONTEXT), _in(SORT), _in(UINT)))
Implementation
Z3_func_decl mk_partial_order(
Z3_context c,
Z3_sort a,
int id,
) {
return _mk_partial_order(
c,
a,
id,
);
}