is_app method

bool is_app(
  1. Z3_context c,
  2. Z3_ast a
)

def_API('Z3_is_app', BOOL, (_in(CONTEXT), _in(AST)))

Implementation

bool is_app(
  Z3_context c,
  Z3_ast a,
) {
  return _is_app(
    c,
    a,
  );
}