mk_ast_vector method

Z3_ast_vector mk_ast_vector(
  1. Z3_context c
)

@name AST vectors / /**@{/ /** \brief Return an empty AST vector.

\remark Reference counting must be used to manage AST vectors, even when the Z3_context was created using #Z3_mk_context instead of #Z3_mk_context_rc.

def_API('Z3_mk_ast_vector', AST_VECTOR, (_in(CONTEXT),))

Implementation

Z3_ast_vector mk_ast_vector(
  Z3_context c,
) {
  return _mk_ast_vector(
    c,
  );
}