Module Register.Service


module Service: Service_graph.Make(sig
val datatype_name : string
type t = Register.SGraph.t 
module V: sig .. end
val iter_vertex : (Register.SGraph.vertex -> unit) -> Register.SGraph.t -> unit
val iter_succ : (Register.SGraph.vertex -> unit) ->
Register.SGraph.t -> Register.SGraph.vertex -> unit
val iter_pred : (Register.SGraph.vertex -> unit) ->
Register.SGraph.t -> Register.SGraph.vertex -> unit
val fold_pred : (Register.SGraph.vertex -> 'a -> 'a) ->
Register.SGraph.t -> Register.SGraph.vertex -> 'a -> 'a
val in_degree : Register.SGraph.t -> Register.SGraph.vertex -> int
end)


type vertex = private {
   node : G.V.t;
   mutable is_root : bool;
   mutable root : vertex;
}
type edge = private
| Inter_services
| Inter_functions
| Both
module CallG: sig .. end
val compute : G.t -> Cilutil.StringSet.t -> CallG.t
val output_graph : Pervasives.out_channel -> CallG.t -> unit
module TP: Graph.Graphviz.GraphWithDotAttrs 
    with type t = CallG.t
    and type V.t = vertex
    and type E.t = CallG.E.t