module type Arg = Tseitin_intf.ArgThe implementation of formulas required to implement Tseitin's CNF conversion.
Formulas
This defines what is needed of formulas in order to implement Tseitin's CNF conversion.
type t
Type of atomic formulas.
val neg : t -> tNegation of atomic formulas.
val fresh : unit -> tGenerate fresh formulas (that are different from any other).
val print : Format.formatter -> t -> unitPrint the given formula.