mirror of
https://github.com/Z3Prover/z3
synced 2025-04-15 21:38:44 +00:00
fix name clash in ocaml api
This commit is contained in:
parent
8da1b024b7
commit
fa97f4a626
|
@ -717,7 +717,7 @@ struct
|
||||||
else
|
else
|
||||||
mk_exists ctx sorts names body weight patterns nopatterns quantifier_id skolem_id
|
mk_exists ctx sorts names body weight patterns nopatterns quantifier_id skolem_id
|
||||||
|
|
||||||
let mk_quantifier (ctx:context) (universal:bool) (bound_constants:expr list) (body:expr) (weight:int option) (patterns:Pattern.pattern list) (nopatterns:expr list) (quantifier_id:Symbol.symbol option) (skolem_id:Symbol.symbol option) =
|
let mk_quantifier_const (ctx:context) (universal:bool) (bound_constants:expr list) (body:expr) (weight:int option) (patterns:Pattern.pattern list) (nopatterns:expr list) (quantifier_id:Symbol.symbol option) (skolem_id:Symbol.symbol option) =
|
||||||
if universal then
|
if universal then
|
||||||
mk_forall_const ctx bound_constants body weight patterns nopatterns quantifier_id skolem_id
|
mk_forall_const ctx bound_constants body weight patterns nopatterns quantifier_id skolem_id
|
||||||
else
|
else
|
||||||
|
|
|
@ -746,7 +746,7 @@ sig
|
||||||
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
|
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
|
||||||
|
|
||||||
(** Create a Quantifier. *)
|
(** Create a Quantifier. *)
|
||||||
val mk_quantifier : context -> bool -> Expr.expr list -> Expr.expr -> int option -> Pattern.pattern list -> Expr.expr list -> Symbol.symbol option -> Symbol.symbol option -> quantifier
|
val mk_quantifier_const : context -> bool -> Expr.expr list -> Expr.expr -> int option -> Pattern.pattern list -> Expr.expr list -> Symbol.symbol option -> Symbol.symbol option -> quantifier
|
||||||
|
|
||||||
(** A string representation of the quantifier. *)
|
(** A string representation of the quantifier. *)
|
||||||
val to_string : quantifier -> string
|
val to_string : quantifier -> string
|
||||||
|
|
Loading…
Reference in a new issue