3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-10 21:20:52 +00:00
This commit is contained in:
Nikolaj Bjorner 2022-01-12 13:28:15 -08:00
parent 0720998bac
commit dfe2b27f9a
4 changed files with 34 additions and 0 deletions

View file

@ -1208,6 +1208,8 @@ typedef enum {
Z3_OP_INT_TO_STR,
Z3_OP_UBV_TO_STR,
Z3_OP_SBV_TO_STR,
Z3_OP_STR_TO_CODE,
Z3_OP_STR_FROM_CODE,
Z3_OP_STRING_LT,
Z3_OP_STRING_LE,
@ -3707,6 +3709,21 @@ extern "C" {
*/
Z3_ast Z3_API Z3_mk_int_to_str(Z3_context c, Z3_ast s);
/**
\brief String to code conversion.
def_API('Z3_mk_string_to_code', AST, (_in(CONTEXT), _in(AST)))
*/
Z3_ast Z3_API Z3_mk_string_to_code(Z3_context c, Z3_ast a);
/**
\brief Code to string conversion.
def_API('Z3_mk_string_from_code', AST, (_in(CONTEXT), _in(AST)))
*/
Z3_ast Z3_API Z3_mk_string_from_code(Z3_context c, Z3_ast a);
/**
\brief Unsigned bit-vector to string conversion.