module User_graph: sig .. end
type cc_port = {
|
port_links : (int * int) list; |
|
port_states : string list; |
}
type site =
type cc_site = {
|
site_name : string; |
|
site_type : site; |
}
type cc_node = {
|
node_type : string; |
|
node_sites : cc_site array; |
}
type connected_component = cc_node array
val print_cc : Format.formatter -> connected_component -> unit
val print_dot_cc : int -> Format.formatter -> connected_component -> unit
val write_connected_component : Bi_outbuf.t -> connected_component -> unit
val string_of_connected_component : ?len:int -> connected_component -> string
len : specifies the initial length
of the buffer used internally.
Default: 1024.
val read_connected_component : Yojson.Safe.lexer_state -> Lexing.lexbuf -> connected_component
val connected_component_of_string : string -> connected_component