Package elki.data.projection.random
Class AbstractRandomProjectionFamily.Par
- java.lang.Object
-
- elki.data.projection.random.AbstractRandomProjectionFamily.Par
-
- All Implemented Interfaces:
Parameterizer
- Direct Known Subclasses:
AchlioptasRandomProjectionFamily.Par
,CauchyRandomProjectionFamily.Par
,GaussianRandomProjectionFamily.Par
,RandomSubsetProjectionFamily.Par
,SimplifiedRandomHyperplaneProjectionFamily.Par
- Enclosing class:
- AbstractRandomProjectionFamily
public abstract static class AbstractRandomProjectionFamily.Par extends java.lang.Object implements Parameterizer
Parameterization interface (with the shared parameters)- Author:
- Erich Schubert
-
-
Field Summary
Fields Modifier and Type Field Description protected RandomFactory
random
Random generator.static OptionID
RANDOM_ID
Parameter for the random generator.
-
Constructor Summary
Constructors Constructor Description Par()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
configure(Parameterization config)
Configure the class.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface elki.utilities.optionhandling.Parameterizer
make
-
-
-
-
Field Detail
-
RANDOM_ID
public static final OptionID RANDOM_ID
Parameter for the random generator.
-
random
protected RandomFactory random
Random generator.
-
-
Method Detail
-
configure
public void configure(Parameterization config)
Description copied from interface:Parameterizer
Configure the class.Note: the status is collected by the parameterization object, so that multiple errors may arise and be reported in one run.
- Specified by:
configure
in interfaceParameterizer
- Parameters:
config
- Parameterization
-
-