mirror of
https://github.com/Z3Prover/z3
synced 2025-05-04 06:15:46 +00:00
completing user print experience with seq/re #2200
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
fca8ffd948
commit
dc0e9c1919
9 changed files with 115 additions and 11 deletions
|
@ -3292,6 +3292,13 @@ extern "C" {
|
|||
*/
|
||||
bool Z3_API Z3_is_seq_sort(Z3_context c, Z3_sort s);
|
||||
|
||||
/**
|
||||
\brief Retrieve basis sort for sequence sort.
|
||||
|
||||
def_API('Z3_get_seq_sort_basis', SORT, (_in(CONTEXT), _in(SORT)))
|
||||
*/
|
||||
Z3_sort Z3_API Z3_get_seq_sort_basis(Z3_context c, Z3_sort s);
|
||||
|
||||
/**
|
||||
\brief Create a regular expression sort out of a sequence sort.
|
||||
|
||||
|
@ -3306,6 +3313,13 @@ extern "C" {
|
|||
*/
|
||||
bool Z3_API Z3_is_re_sort(Z3_context c, Z3_sort s);
|
||||
|
||||
/**
|
||||
\brief Retrieve basis sort for regex sort.
|
||||
|
||||
def_API('Z3_get_re_sort_basis', SORT, (_in(CONTEXT), _in(SORT)))
|
||||
*/
|
||||
Z3_sort Z3_API Z3_get_re_sort_basis(Z3_context c, Z3_sort s);
|
||||
|
||||
/**
|
||||
\brief Create a sort for 8 bit strings.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue