Module Bddapron.Expr2.Bool

module Bool: sig .. end

type 'a t = ('a Bddapron.Cond.t, 'a Bddapron.Expr1.Bool.t) Bdd.Cond.value 
val of_expr0 : ?normalize:bool ->
?reduce:bool ->
?careset:bool ->
'a Bddapron.Env.t ->
'a Bddapron.Cond.t -> 'a Bddapron.Expr0.Bool.t -> 'a t
Creation from an expression of level 0 (without environment)
val of_expr1 : ?normalize:bool ->
?reduce:bool ->
?careset:bool ->
'a Bddapron.Cond.t -> 'a Bddapron.Expr1.Bool.t -> 'a t
Creation from an expression of level 1 (without condition environment)
val get_env : 'a t -> 'a Bddapron.Env.t
val get_cond : 'a t -> 'a Bddapron.Cond.t
Extract resp. the environment and the condition environment
val to_expr0 : 'a t -> 'a Bddapron.Expr0.Bool.t
val to_expr1 : 'a t -> 'a Bddapron.Expr1.Bool.t
Extract the underlying expression of level 0 and 1
val of_expr : 'a Bddapron.Expr2.expr -> 'a t
val to_expr : 'a t -> 'a Bddapron.Expr2.expr
Conversion from/to general expression
val extend_environment : 'a t -> 'a Bddapron.Env.t -> 'a t
Extend the underlying environment to a superenvironment, and adapt accordingly the underlying representation
val is_false : 'a t -> bool
val is_true : 'a t -> bool
val print : Format.formatter -> 'a t -> unit