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 classBest1BinThe 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.classBest2BinThe Best-1-Bin rule always picks the best chromosome as the base.classRand1BinThe 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 DEOptimCellFactoryDEOptim.NewCellFactory. newCellFactory()Construct a new instance ofDEOptimCellFactoryfor 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 classConstrainedCellFactoryThis defines a Differential Evolution operator that takes in account constraints.classIntegralConstrainedCellFactoryThis 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 DEOptimCellFactoryConstrainedCellFactory. unconstrainedFactorya 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 aConstrainedCellFactorythat define the constrained Differential Evolution operators.IntegralConstrainedCellFactory(DEOptimCellFactory factory, IntegralConstrainedCellFactory.IntegerConstraint constraint)Construct an instance ofIntegralConstrainedCellFactory.
-