package KaSim

  1. Overview
  2. Docs
type cc_port = {
  1. port_states : string list;
}
type site =
  1. | Port of cc_port
  2. | Counter of int
type cc_site = {
  1. site_name : string;
  2. site_type : site;
}
type cc_node = {
  1. node_type : string;
  2. 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
val read_connected_component : Yojson.Safe.lexer_state -> Lexing.lexbuf -> connected_component
val connected_component_of_string : string -> connected_component