Package elki.outlier.subspace
Class AggarwalYuEvolutionary.Par
- java.lang.Object
-
- elki.outlier.subspace.AbstractAggarwalYuOutlier.Par
-
- elki.outlier.subspace.AggarwalYuEvolutionary.Par
-
- All Implemented Interfaces:
Parameterizer
- Enclosing class:
- AggarwalYuEvolutionary
public static class AggarwalYuEvolutionary.Par extends AbstractAggarwalYuOutlier.Par
Parameterization class.- Author:
- Erich Schubert
-
-
Field Summary
Fields Modifier and Type Field Description protected int
m
Population size.static OptionID
M_ID
Parameter to specify the number of solutions must be an integer greater than 1.protected RandomFactory
rnd
Random generatorstatic OptionID
SEED_ID
Parameter to specify the random generator seed.-
Fields inherited from class elki.outlier.subspace.AbstractAggarwalYuOutlier.Par
k, K_ID, phi, PHI_ID
-
-
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.AggarwalYuEvolutionary
make()
Make an instance after successful configuration.
-
-
-
Field Detail
-
M_ID
public static final OptionID M_ID
Parameter to specify the number of solutions must be an integer greater than 1.
-
SEED_ID
public static final OptionID SEED_ID
Parameter to specify the random generator seed.
-
m
protected int m
Population size.
-
rnd
protected RandomFactory rnd
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
- Overrides:
configure
in classAbstractAggarwalYuOutlier.Par
- Parameters:
config
- Parameterization
-
make
public AggarwalYuEvolutionary make()
Description copied from interface:Parameterizer
Make an instance after successful configuration.Note: your class should return the exact type, only this very broad interface should use
Object
as return type.- Returns:
- a new instance
-
-