is_well_sorted method

bool is_well_sorted(
  1. Z3_context c,
  2. Z3_ast t
)

\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,
  );
}