Functor Wto.Make

module Make: 
functor (Node : sig
type t 
val equal : t -> t -> bool
val hash : t -> int
val pretty : Format.formatter -> t -> unit
end) -> sig .. end
This functor provides the partitioning algorithm constructing a WTO.
Parameters:
Node : sig type t val equal: t -> t -> bool val hash: t -> int val pretty: Format.formatter -> t -> unit end

val partition : init:Node.t -> succs:(Node.t -> Node.t list) -> Node.t Wto.partition
Implements Bourdoncle "Efficient chaotic iteration strategies with widenings" algorithm to compute a WTO.
val pretty_partition : Format.formatter -> Node.t Wto.partition -> unit
val pretty_component : Format.formatter -> Node.t Wto.component -> unit