PulseSatUnsat.Import
include module type of Types
for opening to get Sat and Unsat in the namespace
open
Sat
Unsat
type nonrec 'a sat_unsat_t = 'a t =
| Unsat
| Sat of 'a
val (>>|) : 'a t -> ('a -> 'b) -> 'b t
val (>>=) : 'a t -> ('a -> 'b t) -> 'b t
val let+ : 'a t -> ('a -> 'b) -> 'b t
val let* : 'a t -> ('a -> 'b t) -> 'b t