mk_linear_order method
@name Special relations / /**@{/ /** \brief create a linear ordering relation over signature \c a. The relation is identified by the index \c id.
def_API('Z3_mk_linear_order', FUNC_DECL ,(_in(CONTEXT), _in(SORT), _in(UINT)))
Implementation
Z3_func_decl mk_linear_order(
Z3_context c,
Z3_sort a,
int id,
) {
return _mk_linear_order(
c,
a,
id,
);
}