mirror of
https://github.com/Z3Prover/z3
synced 2025-06-20 12:53:38 +00:00
adding range to C API. Issue #831
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
dc0d29a00c
commit
feb801564b
3 changed files with 13 additions and 1 deletions
|
@ -3367,6 +3367,14 @@ extern "C" {
|
|||
*/
|
||||
Z3_ast Z3_API Z3_mk_re_concat(Z3_context c, unsigned n, Z3_ast const args[]);
|
||||
|
||||
|
||||
/**
|
||||
\brief Create the range regular expression over two sequences of length 1.
|
||||
|
||||
def_API('Z3_mk_re_range' ,AST ,(_in(CONTEXT), _in(AST), _in(AST)))
|
||||
*/
|
||||
Z3_ast Z3_API Z3_mk_re_range(Z3_context c, Z3_ast lo, Z3_ast hi);
|
||||
|
||||
/*@}*/
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue