mk_ast_map method

Z3_ast_map mk_ast_map(
  1. Z3_context c
)

@name AST maps / /**@{/ /** \brief Return an empty mapping from AST to AST

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

def_API('Z3_mk_ast_map', AST_MAP, (_in(CONTEXT),) )

Implementation

Z3_ast_map mk_ast_map(
  Z3_context c,
) {
  return _mk_ast_map(
    c,
  );
}