Parameter ArrayWithCopy.Relation
val pretty : Stdlib.Format.formatter -> t -> unitPretty printer for relations
val identity : tThe identity relation
Monoid composition, written using the functional convention compose f g is f \circ g. Should be associative, and compatible with identity:
- For all x,
G.compose x G.identity = G.compose G.identity x = x - For all x y z,
G.compose x (G.compose y z) = G.compose (G.compose x y) z
Group inversion, should verify for all x: G.compose x (G.inverse x) = G.compose (G.inverse x) x = G.identity
val hash : t -> inta hashing function