module Formula:sig..end
McSat formulas
type t
The type of atomic formulas over terms.
val equal : t -> t -> boolEquality over formulas.
val hash : t -> intHashing function for formulas. Should be such that two formulas equal according
to Expr_intf.S.equal have the same hash.
val print : Format.formatter -> t -> unitPrinting function used among other thing for debugging.
val dummy : tConstant formula. A valid formula should never be physically equal to dummy
val neg : t -> tFormula negation
val norm : t -> t * Expr_intf.negatedReturns a 'normalized' form of the formula, possibly negated
(in which case return Negated).
norm must be so that a and neg a normalise to the same formula,
but one returns Negated and the other Same_sign.