Refactor the Ata module:
[tatoo.git] / src / boolean.mli
index 73af3c1..2c1607f 100644 (file)
 (*                                                                     *)
 (***********************************************************************)
 
-module type ATOM =
-sig
-  include Hcons.S
-  include Common_sig.Printable with type t := t
-end
-
 type ('formula,'atom) expr =
   | False
   | True
@@ -29,7 +23,10 @@ type ('formula,'atom) expr =
 (** View of the internal representation of a formula,
     used for pattern matching *)
 
-module Make(A : ATOM) :
+module Make(A : sig
+  include Hcons.S
+  include Common_sig.Printable with type t := t
+end) :
 sig
   type t