Module Bigraph.Solver
type stats={v : int;Number of variables.
c : int;Number of clauses.
mem : float;Memory used in MB.
cpu : float;CPU time in seconds.
}Solver statistics.
val string_of_value : value -> stringString representation of a solver value.
type occ={nodes : Iso.t;One-to-one mapping over nodes.
edges : Iso.t;One-to-one mapping over edges.
hyper_edges : Fun.t;Mapping over hyper-edges.
}The type of occurrences.
val pp_occ : Stdlib.Format.formatter -> occ -> unitPretty printer
module type E = sig ... endExternal solver interface.
module type S = sig ... endSolver interface.
module type M = sig ... endThe type of a bigraph matching engine.