Uses of Interface
kieker.analysis.generic.clustering.mtree.ISplitFunction
Package | Description |
---|---|
kieker.analysis.generic.clustering.mtree |
Copyright 2022 Kieker Project (http://kieker-monitoring.net)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
|
-
Uses of ISplitFunction in kieker.analysis.generic.clustering.mtree
Classes in kieker.analysis.generic.clustering.mtree that implement ISplitFunction Modifier and Type Class Description class
ComposedSplitFunction<T>
Methods in kieker.analysis.generic.clustering.mtree that return ISplitFunction Modifier and Type Method Description ISplitFunction<T>
MTree. getSplitFunction()
Constructors in kieker.analysis.generic.clustering.mtree with parameters of type ISplitFunction Constructor Description MTree(int minNodeCapacity, int maxNodeCapacity, IDistanceFunction<? super T> distanceFunction, ISplitFunction<T> existingSplitFunction)
Constructs an M-Tree with the specified minimum and maximum node capacities and distance function.MTree(int minNodeCapacity, IDistanceFunction<? super T> distanceFunction, ISplitFunction<T> splitFunction)
Constructs an M-Tree with the specified minimum node capacity and distance function.MTree(IDistanceFunction<? super T> distanceFunction, ISplitFunction<T> splitFunction)
Constructs an M-Tree with the specified distance function.