mirror of
https://github.com/Z3Prover/z3
synced 2025-09-02 08:10:43 +00:00
add arguments to optimize_check fix #1866
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
5b51e69137
commit
0457b5a73f
2 changed files with 11 additions and 1 deletions
|
@ -736,6 +736,12 @@ sig
|
|||
(** Create an existential Quantifier. *)
|
||||
val mk_exists_const : context -> Expr.expr list -> Expr.expr -> int option -> Pattern.pattern list -> Expr.expr list -> Symbol.symbol option -> Symbol.symbol option -> quantifier
|
||||
|
||||
(** Create a lambda binding. *)
|
||||
val mk_lambda_const : context -> Expr.expr list -> Expr.expr -> quantifier
|
||||
|
||||
(** Create a lambda binding where bound variables are given by symbols and sorts *)
|
||||
val mk_lambda : context -> (Symbol.symbol * Sort.sort) list -> Expr.expr -> quantifier
|
||||
|
||||
(** Create a Quantifier. *)
|
||||
val mk_quantifier : context -> Sort.sort list -> Symbol.symbol list -> Expr.expr -> int option -> Pattern.pattern list -> Expr.expr list -> Symbol.symbol option -> Symbol.symbol option -> quantifier
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue