3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-09-02 08:10:43 +00:00

add rec decl/def to ML #4563

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-07-04 15:38:23 -07:00
parent 62b9630c4b
commit 10d0404175
3 changed files with 25 additions and 4 deletions

View file

@ -326,10 +326,22 @@ sig
(** Creates a new function declaration. *)
val mk_func_decl_s : context -> string -> Sort.sort list -> Sort.sort -> func_decl
(** Creates a fresh function declaration with a name prefixed with a prefix string. *)
(** Creates a function declaration that can be used in a recursive function definition.
{!add_rec_def} *)
val mk_rec_fun : context > Symbol.symbol -> Sort.sort list -> Sort.sort -> func_decl
(** Creates a function declaration that can be used in a recursive function definition.
{!add_rec_def} *)
val mk_rec_fun_s : context > string -> Sort.sort list -> Sort.sort -> func_decl
(** Registers a recursive function definition *)
val add_rec_def : context -> func_decl -> Expr.expr list -> Expr.expr -> unit
(** Creates a fresh function declaration with a name prefixed with a prefix string. *)
val mk_fresh_func_decl : context -> string -> Sort.sort list -> Sort.sort -> func_decl
(** Creates a new constant function declaration. *)
val mk_const_decl : context -> Symbol.symbol -> Sort.sort -> func_decl