Module Fixpoint.Fixpoint_graphSource

Produce graphs that are suitable and efficient for fixpoint computation, notably:

Sourcemodule type Graph = sig ... end

Signature for the input graph. We need the vertices to be hashed for traversal. In the algorithm, we also need the first node and a function returning the successor edge and nodes.

Sourcemodule Make (G : Graph) : sig ... end