Up

module OpamActionGraph

: sig
#
module type ACTION = sig
#
type package
include OpamParallel.VERTEX with type t = package OpamTypes.action
end
#
module MakeAction : functor (P : OpamTypes.GenericPackage) -> ACTION with type package = P.t
#
module Make : functor (A : ACTION) -> OpamParallel.GRAPH with type V.t = A.t
end