Module Cliquetree.CliqueTree
Parameters
Signature
module CliqueV : sig ... endOriginal graph vertex
module CliqueTreeV : sig ... endClique tree vertex type
module CliqueTreeE : sig ... endmodule CliqueTree : Sig.G with type V.t = CliqueTreeV.t and type E.label = CliqueTreeE.tThe clique tree graph type
val mcs_clique : G.t -> G.V.t list * CliqueTree.t * CliqueTree.V.tmcs_clique greturn an perfect elimination order ofg(if it is chordal), the clique tree ofgand its root.
val is_chordal : G.t -> boolis_chordal guses the clique tree construction to test if a graph is chordal or not.
val maxwidth : G.t -> G.t -> CliqueTree.t -> intmaxwidth g tri treereturns the maxwidth characteristic of the triangulationtriof graphggiven the clique treetreeoftri.