3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-27 02:45:51 +00:00

Integrating Nikolaj's Saturday changes (at unstable branch)

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2012-10-21 13:40:22 -07:00
parent add684d8e9
commit 3003ee5cb6
6 changed files with 33 additions and 39 deletions

View file

@ -1159,7 +1159,7 @@ typedef enum
#endif
/*
/**
Definitions for update_api.py
def_Type('CONFIG', 'Z3_config', 'Config')
@ -3970,12 +3970,12 @@ END_MLAPI_EXCLUDE
*/
Z3_ast_kind Z3_API Z3_get_ast_kind(__in Z3_context c, __in Z3_ast a);
/*
/**
def_API('Z3_is_app', BOOL, (_in(CONTEXT), _in(AST)))
*/
Z3_bool Z3_API Z3_is_app(__in Z3_context c, __in Z3_ast a);
/*
/**
def_API('Z3_is_numeral_ast', BOOL, (_in(CONTEXT), _in(AST)))
*/
Z3_bool Z3_API Z3_is_numeral_ast(__in Z3_context c, __in Z3_ast a);
@ -4757,17 +4757,17 @@ END_MLAPI_EXCLUDE
*/
Z3_string Z3_API Z3_ast_to_string(__in Z3_context c, __in Z3_ast a);
/*
/**
def_API('Z3_pattern_to_string', STRING, (_in(CONTEXT), _in(PATTERN)))
*/
Z3_string Z3_API Z3_pattern_to_string(__in Z3_context c, __in Z3_pattern p);
/*
/**
def_API('Z3_sort_to_string', STRING, (_in(CONTEXT), _in(SORT)))
*/
Z3_string Z3_API Z3_sort_to_string(__in Z3_context c, __in Z3_sort s);
/*
/**
def_API('Z3_func_decl_to_string', STRING, (_in(CONTEXT), _in(FUNC_DECL)))
*/
Z3_string Z3_API Z3_func_decl_to_string(__in Z3_context c, __in Z3_func_decl d);