3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-09-02 08:10:43 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-07-04 23:34:21 -07:00
parent f380d4cf83
commit 006418e027
3 changed files with 11 additions and 11 deletions

View file

@ -329,11 +329,11 @@ sig
(** 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
val mk_rec_func_decl : 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
val mk_rec_func_decl_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