Cluster<'T> Type

Binary distance tree

Union cases

Union case Description

Leaf(int, int, 'T)

Full Usage: Leaf(int, int, 'T)

Parameters:
    Item1 : int
    Item2 : int
    Item3 : 'T

ID * leafCount * Tag

Item1 : int
Item2 : int
Item3 : 'T

Node(int, float, int, Cluster<'T>, Cluster<'T>)

Full Usage: Node(int, float, int, Cluster<'T>, Cluster<'T>)

Parameters:
    Item1 : int
    Item2 : float
    Item3 : int
    Item4 : Cluster<'T>
    Item5 : Cluster<'T>

ID * distance * leafCount * cluster left * cluster right

Item1 : int
Item2 : float
Item3 : int
Item4 : Cluster<'T>
Item5 : Cluster<'T>