Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
val hash : t -> int
val make : int -> t
make n
creates the literal whose index is n
. NOTE n
must be strictly positive. Use neg
to obtain the negation of a literal.
val sign : t -> bool
Sign: true
if the literal is positive, false
for a negated literal. Invariants: sign (abs x) = true
sign (neg x) = not (sign x)
val to_int : t -> int
val to_string : t -> string