Uses of Class
es.udc.gii.common.eaf.exception.OperatorException

Packages that use OperatorException
es.udc.gii.common.eaf.algorithm.operator   
es.udc.gii.common.eaf.algorithm.operator.evaluate   
es.udc.gii.common.eaf.algorithm.operator.replace   
es.udc.gii.common.eaf.algorithm.operator.reproduction   
es.udc.gii.common.eaf.algorithm.operator.reproduction.crossover   
es.udc.gii.common.eaf.algorithm.operator.reproduction.mutation   
es.udc.gii.common.eaf.algorithm.operator.selection   
 

Uses of OperatorException in es.udc.gii.common.eaf.algorithm.operator
 

Methods in es.udc.gii.common.eaf.algorithm.operator that throw OperatorException
 java.util.List<Individual> Operator.operate(EvolutionaryAlgorithm algorithm, java.util.List<Individual> individuals)
          Execute this operator over a group of individuals.
 

Uses of OperatorException in es.udc.gii.common.eaf.algorithm.operator.evaluate
 

Methods in es.udc.gii.common.eaf.algorithm.operator.evaluate that throw OperatorException
 java.util.List<Individual> LocalSearchOperator.operate(EvolutionaryAlgorithm algorithm, java.util.List<Individual> individuals)
           
 

Uses of OperatorException in es.udc.gii.common.eaf.algorithm.operator.replace
 

Methods in es.udc.gii.common.eaf.algorithm.operator.replace that throw OperatorException
 java.util.List<Individual> ReplaceOperator.operate(EvolutionaryAlgorithm algorithm, java.util.List<Individual> individuals)
           
 

Uses of OperatorException in es.udc.gii.common.eaf.algorithm.operator.reproduction
 

Methods in es.udc.gii.common.eaf.algorithm.operator.reproduction that throw OperatorException
 java.util.List<Individual> ColonizationOperator.operate(EvolutionaryAlgorithm algorithm, java.util.List<Individual> individuals)
           
 

Uses of OperatorException in es.udc.gii.common.eaf.algorithm.operator.reproduction.crossover
 

Methods in es.udc.gii.common.eaf.algorithm.operator.reproduction.crossover that throw OperatorException
 java.util.List<Individual> CrossOverOperator.operate(EvolutionaryAlgorithm algorithm, java.util.List<Individual> individuals)
           
 

Uses of OperatorException in es.udc.gii.common.eaf.algorithm.operator.reproduction.mutation
 

Methods in es.udc.gii.common.eaf.algorithm.operator.reproduction.mutation that throw OperatorException
 java.util.List<Individual> MutationOperator.operate(EvolutionaryAlgorithm algorithm, java.util.List<Individual> individuals)
           
 

Uses of OperatorException in es.udc.gii.common.eaf.algorithm.operator.selection
 

Methods in es.udc.gii.common.eaf.algorithm.operator.selection that throw OperatorException
 java.util.List<Individual> DeterministicTournamentSelection.operate(EvolutionaryAlgorithm algorithm, java.util.List<Individual> individuals)
           
 java.util.List<Individual> ExtintionOperator.operate(EvolutionaryAlgorithm algorithm, java.util.List<Individual> individuals)
           
 java.util.List<Individual> InheritExtintionOperator.operate(EvolutionaryAlgorithm algorithm, java.util.List<Individual> individuals)
           
 java.util.List<Individual> SelectionOperator.operate(EvolutionaryAlgorithm algorithm, java.util.List<Individual> individuals)