package prbnmcn-clustering

  1. Overview
  2. Docs

Agglomerative clustering functor.

module type Element_set = sig ... end
module Make (E : Intf.Metric) (S : Element_set with type elt = E.t) : sig ... end

Make takes as first argument a module E : Element of elements admitting the structure of a metric space. The second argument of Make is a module endowing sets of elements with the structure of a metric space.