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 -> string
String 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 -> unit
Pretty printer
module type E = sig ... end
External solver interface.
module type S = sig ... end
Solver interface.
module type M = sig ... end
The type of a bigraph matching engine.