Defaultgraphs.PackageGraph
Imperative bidirectional graph for dependecies. Imperative unidirectional graph for conflicts.
module PkgV : sig ... end
module G : sig ... end
module UG : sig ... end
module O : sig ... end
module S : sig ... end
module DotPrinter : sig ... end
module GmlPrinter : sig ... end
module GraphmlPrinter : sig ... end
add to the graph all conjunctive dependencies of package id
for all id \in idlist add to the graph all conjunctive dependencies
given a graph return the conjunctive dependency closure of the package id
val dependency_graph : ?conjunctive:bool -> Cudf.universe -> G.t
Build the dependency graph from the given cudf universe
Build the dependency graph from the given list of packages
Build the conflict graph from the given list of packages
val conflict_graph : Cudf.universe -> UG.t
Build the conflict graph from the given cudf universe
Return the list of connected component of an undirected graph
val cycle_reduction : G.t -> unit
val out : ?dump:string option -> ?dot:string option -> ?detrans:bool -> G.t -> unit
val load : 'a -> string -> G.t