Module Kappa_mixtures.User_graph
type links=|LINKS of ((int * int) * int) list|WHATEVER|SOME|TYPE of string * stringtype cc_port={port_links : links;port_states : string list option;Nonemeans WHATEVER}type site=|Port of cc_port|Counter of inttype cc_site={site_name : string;site_type : site;}type cc_node={node_type : string;node_id : int option;node_sites : cc_site array;}type connected_component= cc_node option array array
val print_cc : Format.formatter -> connected_component -> unitval print_dot_cc : int -> Format.formatter -> connected_component -> unitval links_of_yojson : Yojson.Basic.t -> linksval write_connected_component : Bi_outbuf.t -> connected_component -> unitOutput a JSON value of type
connected_component.
val string_of_connected_component : ?len:int -> connected_component -> stringSerialize a value of type
connected_componentinto a JSON string.- parameter len
 specifies the initial length of the buffer used internally. Default: 1024.
val read_connected_component : Yojson.Safe.lexer_state -> Lexing.lexbuf -> connected_componentInput JSON data of type
connected_component.
val connected_component_of_string : string -> connected_componentDeserialize JSON data of type
connected_component.