Module Bigraph.Nodes
val empty : tThe empty node set.
val find_all : Ctrl.t -> t -> IntSet.tfind_all c nsfinds all the nodes in node setnswith control contained by the sort that also contains controlc.
val is_empty : t -> boolReturn
trueif the set is empty.
val norm : t -> string listCompute the norm of a set. The norm is a defined as a sorted list of controls. Example:
[ "A"; "A(4)"; "C"; "D(3,6.2)"; "T" ]
val of_string : string -> tOpposite of
Nodes.to_string.- raises Invalid_argument
if the input cannot be parsed.
val size : t -> intReturn the cardinality of a node set.
val to_string : t -> stringReturn a string representation of a node set. Example:
{(2, Ready:0),(0, A(1,4):1),(3, Fun:0),(1, Snd:2)}
val pp : Stdlib.Format.formatter -> t -> unitPretty printer.
val to_dot : t -> stringto_dot nsreturns a string expressing node shapes in dot format.