is_well_sorted method
\brief Return \c true if the given expression \c t is well sorted.
def_API('Z3_is_well_sorted', BOOL, (_in(CONTEXT), _in(AST)))
Implementation
bool is_well_sorted(
Z3_context c,
Z3_ast t,
) {
return _is_well_sorted(
c,
t,
);
}