Module Defaultgraphs.SyntacticDependencyGraphSource

Syntactic dependency graph. Vertices are cudf packages, OR nodes representing a disjunctive dependency, or Missing nodes representing a missing package. The latter is used to display explanation graphs. Vertices are indexed considering only the pair name,version . Edges are labelled with

Sourcetype pkg = {
  1. value : Cudf.package;
  2. root : bool;
}
Sourcemodule PkgV : sig ... end
Sourcemodule PkgE : sig ... end
Sourcemodule G : sig ... end
Sourcemodule DotPrinter : sig ... end
Sourcemodule S : sig ... end
Sourcemodule GmlPrinter : sig ... end
Sourcemodule GraphmlPrinter : sig ... end
Sourceval add_edge : G.t -> G.vertex -> PkgE.s -> G.vertex -> unit
Sourceval dependency_graph : ?root:Cudf.package -> Cudf.universe -> G.t

Build the syntactic dependency graph from the give cudf universe