Uses of Class
dev.nm.solver.multivariate.geneticalgorithm.minimizer.deoptim.DEOptimCellFactory
-
Packages that use DEOptimCellFactory Package Description dev.nm.solver.multivariate.geneticalgorithm.minimizer.deoptim dev.nm.solver.multivariate.geneticalgorithm.minimizer.deoptim.constrained -
-
Uses of DEOptimCellFactory in dev.nm.solver.multivariate.geneticalgorithm.minimizer.deoptim
Subclasses of DEOptimCellFactory in dev.nm.solver.multivariate.geneticalgorithm.minimizer.deoptim Modifier and Type Class Description class
Best1Bin
The Best-1-Bin rule is the same as the Rand-1-Bin rule, except that it always pick the best candidate in the population to be the base.class
Best2Bin
The Best-1-Bin rule always picks the best chromosome as the base.class
Rand1Bin
The Rand-1-Bin rule is defined by: mutation by adding a scaled, randomly sampled vector difference to a third vector (differential mutation); crossover by performing a uniform crossover (discrete recombination).Methods in dev.nm.solver.multivariate.geneticalgorithm.minimizer.deoptim that return DEOptimCellFactory Modifier and Type Method Description DEOptimCellFactory
DEOptim.NewCellFactory. newCellFactory()
Construct a new instance ofDEOptimCellFactory
for a minimization problem.Constructors in dev.nm.solver.multivariate.geneticalgorithm.minimizer.deoptim with parameters of type DEOptimCellFactory Constructor Description DEOptimCellFactory(DEOptimCellFactory that)
Copy constructor. -
Uses of DEOptimCellFactory in dev.nm.solver.multivariate.geneticalgorithm.minimizer.deoptim.constrained
Subclasses of DEOptimCellFactory in dev.nm.solver.multivariate.geneticalgorithm.minimizer.deoptim.constrained Modifier and Type Class Description class
ConstrainedCellFactory
This defines a Differential Evolution operator that takes in account constraints.class
IntegralConstrainedCellFactory
This implementation defines the constrained Differential Evolution operators that solve an Integer Programming problem.Fields in dev.nm.solver.multivariate.geneticalgorithm.minimizer.deoptim.constrained declared as DEOptimCellFactory Modifier and Type Field Description protected DEOptimCellFactory
ConstrainedCellFactory. unconstrainedFactory
a factory that defines the unconstrained Differential Evolution operatorsConstructors in dev.nm.solver.multivariate.geneticalgorithm.minimizer.deoptim.constrained with parameters of type DEOptimCellFactory Constructor Description ConstrainedCellFactory(DEOptimCellFactory unconstrainedFactory)
Construct an instance of aConstrainedCellFactory
that define the constrained Differential Evolution operators.IntegralConstrainedCellFactory(DEOptimCellFactory factory, IntegralConstrainedCellFactory.IntegerConstraint constraint)
Construct an instance ofIntegralConstrainedCellFactory
.
-