3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-03 22:05:45 +00:00

Expose PARAMETER_INTERNAL and PARAMETER_ZSTRING in case API users access these #7522

This commit is contained in:
Nikolaj Bjorner 2025-01-22 11:46:03 -08:00
parent ef275ab1a0
commit bd566f16b1
3 changed files with 28 additions and 20 deletions

View file

@ -119,6 +119,8 @@ typedef enum
- Z3_PARAMETER_SORT is used for sort parameters.
- Z3_PARAMETER_AST is used for expression parameters.
- Z3_PARAMETER_FUNC_DECL is used for function declaration parameters.
- Z3_PARAMETER_INTERNAL is used for parameters that are private to Z3. They cannot be accessed.
- Z3_PARAMETER_ZSTRING is used for string parameters.
*/
typedef enum
{
@ -128,7 +130,9 @@ typedef enum
Z3_PARAMETER_SYMBOL,
Z3_PARAMETER_SORT,
Z3_PARAMETER_AST,
Z3_PARAMETER_FUNC_DECL
Z3_PARAMETER_FUNC_DECL,
Z3_PARAMETER_INTERNAL,
Z3_PARAMETER_ZSTRING
} Z3_parameter_kind;
/**