
public interface GeneratorInterface
| Modifier and Type | Method and Description | 
|---|---|
| List<Vector> | generate(int count)Generate a specified number of points | 
| double | getDensity(Vector p)Get the density of the given vector | 
| int | getDim()Get dimensionality of generated data | 
| String | getName()Get cluster name | 
| int | getSize()Get number of points to be generated by this generator. | 
| Model | makeModel()Make a cluster model for this cluster. | 
int getSize()
int getDim()
List<Vector> generate(int count) throws UnableToComplyException
count - Number of points to generateUnableToComplyException - when generation failsdouble getDensity(Vector p)
p - vectorString getName()
Model makeModel()