Package elki.data.synthetic.bymodel
Interface GeneratorInterfaceDynamic
-
- All Superinterfaces:
GeneratorInterface
- All Known Implementing Classes:
GeneratorSingleCluster
public interface GeneratorInterfaceDynamic extends GeneratorInterface
Interface for a dynamic cluster generator.A cluster generator is considered dynamic when it allows "rejecting" points and the generation of additional new points.
- Since:
- 0.2
- Author:
- Erich Schubert
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetDiscarded()Get number of discarded pointsintgetRetries()Retrieve remaining number of retries.voidincrementDiscarded()Increment the number of elements discarded.-
Methods inherited from interface elki.data.synthetic.bymodel.GeneratorInterface
computeMean, generate, getDensity, getDim, getName, getSize, makeModel
-
-
-
-
Method Detail
-
getDiscarded
int getDiscarded()
Get number of discarded points- Returns:
- number of discarded points
-
getRetries
int getRetries()
Retrieve remaining number of retries.- Returns:
- remaining number of retries
-
incrementDiscarded
void incrementDiscarded()
Increment the number of elements discarded.
-
-