Uses of Interface
org.uma.jmetal.solution.binarysolution.BinarySolution
-
Uses of BinarySolution in org.uma.jmetal.operator.crossover.impl
Methods in org.uma.jmetal.operator.crossover.impl that return types with arguments of type BinarySolution Modifier and Type Method Description java.util.List<BinarySolution>HUXCrossover. doCrossover(double probability, BinarySolution parent1, BinarySolution parent2)Perform the crossover operationjava.util.List<BinarySolution>SinglePointCrossover. doCrossover(double probability, BinarySolution parent1, BinarySolution parent2)Perform the crossover operation.java.util.List<BinarySolution>UniformCrossover. doCrossover(double probability, BinarySolution parent1, BinarySolution parent2)Perform the crossover operation.java.util.List<BinarySolution>HUXCrossover. execute(java.util.List<BinarySolution> parents)Execute() methodjava.util.List<BinarySolution>SinglePointCrossover. execute(java.util.List<BinarySolution> solutions)java.util.List<BinarySolution>UniformCrossover. execute(java.util.List<BinarySolution> solutions)Methods in org.uma.jmetal.operator.crossover.impl with parameters of type BinarySolution Modifier and Type Method Description java.util.List<BinarySolution>HUXCrossover. doCrossover(double probability, BinarySolution parent1, BinarySolution parent2)Perform the crossover operationjava.util.List<BinarySolution>SinglePointCrossover. doCrossover(double probability, BinarySolution parent1, BinarySolution parent2)Perform the crossover operation.java.util.List<BinarySolution>UniformCrossover. doCrossover(double probability, BinarySolution parent1, BinarySolution parent2)Perform the crossover operation.Method parameters in org.uma.jmetal.operator.crossover.impl with type arguments of type BinarySolution Modifier and Type Method Description java.util.List<BinarySolution>HUXCrossover. execute(java.util.List<BinarySolution> parents)Execute() methodjava.util.List<BinarySolution>SinglePointCrossover. execute(java.util.List<BinarySolution> solutions)java.util.List<BinarySolution>UniformCrossover. execute(java.util.List<BinarySolution> solutions) -
Uses of BinarySolution in org.uma.jmetal.operator.mutation.impl
Methods in org.uma.jmetal.operator.mutation.impl that return BinarySolution Modifier and Type Method Description BinarySolutionBitFlipMutation. execute(BinarySolution solution)Execute() methodMethods in org.uma.jmetal.operator.mutation.impl with parameters of type BinarySolution Modifier and Type Method Description voidBitFlipMutation. doMutation(double probability, BinarySolution solution)Perform the mutation operationBinarySolutionBitFlipMutation. execute(BinarySolution solution)Execute() method -
Uses of BinarySolution in org.uma.jmetal.problem.binaryproblem.impl
Methods in org.uma.jmetal.problem.binaryproblem.impl that return BinarySolution Modifier and Type Method Description BinarySolutionAbstractBinaryProblem. createSolution() -
Uses of BinarySolution in org.uma.jmetal.solution.binarysolution.impl
Classes in org.uma.jmetal.solution.binarysolution.impl that implement BinarySolution Modifier and Type Class Description classDefaultBinarySolutionThis defines an implementation of a binary solution.