module Clique: sig .. end
sig
end
Graph cliques
This algorithm will find and return all maximal cliques in an undirected graph.
module type G = sig .. end
Minimal graph signature for Bron-Kerbosch.
module Bron_Kerbosch: functor (G : G) -> sig .. end
functor (
G
:
) ->