Package org.opt4j.optimizer.rs
Class RandomSearchModule
- java.lang.Object
-
- com.google.inject.AbstractModule
-
- org.opt4j.start.Opt4JModule
-
- org.opt4j.core.optimizer.OptimizerModule
-
- org.opt4j.optimizer.rs.RandomSearchModule
-
- All Implemented Interfaces:
com.google.inject.Module
public class RandomSearchModule extends OptimizerModule
TheRandomSearchModule.- See Also:
RandomSearch
-
-
Field Summary
Fields Modifier and Type Field Description protected intbatchsizeprotected intiterations-
Fields inherited from class org.opt4j.start.Opt4JModule
SINGLETON
-
-
Constructor Summary
Constructors Constructor Description RandomSearchModule()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidconfig()Configure the module.intgetBatchsize()Returns the number of batched individuals for the evaluation.intgetIterations()Returns the number of iterations.voidsetBatchsize(int batchsize)Sets the number of batched individuals for the evaluation.voidsetIterations(int iterations)Sets the number of iterations.-
Methods inherited from class org.opt4j.core.optimizer.OptimizerModule
bindOptimizer
-
Methods inherited from class org.opt4j.start.Opt4JModule
addControlListener, addIndividualStateListener, addOptimizerIterationListener, addOptimizerStateListener, bindConstant, bindConstant, bindConstant, bindConstant, configure, constant, multi
-
Methods inherited from class com.google.inject.AbstractModule
addError, addError, addError, bind, bind, bind, bindConstant, binder, bindInterceptor, bindListener, bindScope, configure, convertToTypes, currentStage, getMembersInjector, getMembersInjector, getProvider, getProvider, install, requestInjection, requestStaticInjection, requireBinding, requireBinding
-
-
-
-
Method Detail
-
getIterations
public int getIterations()
Returns the number of iterations.- Returns:
- the number of iterations
- See Also:
setIterations(int)
-
setIterations
public void setIterations(int iterations)
Sets the number of iterations.- Parameters:
iterations- the number of iterations- See Also:
getIterations()
-
getBatchsize
public int getBatchsize()
Returns the number of batched individuals for the evaluation.- Returns:
- the batchsize
- See Also:
setBatchsize(int)
-
setBatchsize
public void setBatchsize(int batchsize)
Sets the number of batched individuals for the evaluation.- Parameters:
batchsize- the batchsize to set- See Also:
getBatchsize()
-
config
protected void config()
Description copied from class:Opt4JModuleConfigure the module. Bind constants, listeners, and bind arbitrary classes.- Specified by:
configin classOpt4JModule- See Also:
Binder
-
-