get_decl_ast_parameter method
\brief Return the expression value associated with an expression parameter.
\pre Z3_get_decl_parameter_kind(c, d, idx) == Z3_PARAMETER_AST
def_API('Z3_get_decl_ast_parameter', AST, (_in(CONTEXT), _in(FUNC_DECL), _in(UINT)))
Implementation
Z3_ast get_decl_ast_parameter(
Z3_context c,
Z3_func_decl d,
int idx,
) {
return _get_decl_ast_parameter(
c,
d,
idx,
);
}