Uses of Interface
moa.clusterers.outliers.utils.mtree.SplitFunction
-
Packages that use SplitFunction Package Description moa.clusterers.outliers.utils.mtree -
-
Uses of SplitFunction in moa.clusterers.outliers.utils.mtree
Classes in moa.clusterers.outliers.utils.mtree that implement SplitFunction Modifier and Type Class Description class
ComposedSplitFunction<DATA>
Fields in moa.clusterers.outliers.utils.mtree declared as SplitFunction Modifier and Type Field Description protected SplitFunction<DATA>
MTree. splitFunction
Constructors in moa.clusterers.outliers.utils.mtree with parameters of type SplitFunction Constructor Description MTree(int minNodeCapacity, int maxNodeCapacity, DistanceFunction<? super DATA> distanceFunction, SplitFunction<DATA> splitFunction)
Constructs an M-Tree with the specified minimum and maximum node capacities and distance function.MTree(int minNodeCapacity, DistanceFunction<? super DATA> distanceFunction, SplitFunction<DATA> splitFunction)
Constructs an M-Tree with the specified minimum node capacity and distance function.MTree(DistanceFunction<? super DATA> distanceFunction, SplitFunction<DATA> splitFunction)
Constructs an M-Tree with the specified distance function.
-