Uses of Class
es.udc.gii.common.eaf.algorithm.operator.OperatorChain

Packages that use OperatorChain
es.udc.gii.common.eaf.algorithm   
es.udc.gii.common.eaf.algorithm.parallel   
es.udc.gii.common.eaf.factory   
 

Uses of OperatorChain in es.udc.gii.common.eaf.algorithm
 

Fields in es.udc.gii.common.eaf.algorithm declared as OperatorChain
private  OperatorChain<EvaluationOperator> EvolutionaryAlgorithm.evalChain
           
private  OperatorChain<ReplaceOperator> EvolutionaryAlgorithm.replaceChain
           
private  OperatorChain<ReproductionOperator> EvolutionaryAlgorithm.reproductionChain
           
private  OperatorChain<SelectionOperator> EvolutionaryAlgorithm.selectionChain
           
 

Methods in es.udc.gii.common.eaf.algorithm that return OperatorChain
 OperatorChain<EvaluationOperator> EvolutionaryAlgorithm.getEvalChain()
           
 OperatorChain<ReplaceOperator> EvolutionaryAlgorithm.getReplaceChain()
           
 OperatorChain<ReproductionOperator> EvolutionaryAlgorithm.getReproductionChain()
           
 OperatorChain<SelectionOperator> EvolutionaryAlgorithm.getSelectionChain()
           
 

Methods in es.udc.gii.common.eaf.algorithm with parameters of type OperatorChain
 void EvolutionaryAlgorithm.setEvalChain(OperatorChain<EvaluationOperator> evalChain)
           
 void EvolutionaryAlgorithm.setReplaceChain(OperatorChain<ReplaceOperator> replaceChain)
           
 void EvolutionaryAlgorithm.setReproductionChain(OperatorChain<ReproductionOperator> reproductionChain)
           
 void EvolutionaryAlgorithm.setSelectionChain(OperatorChain<SelectionOperator> selectionChain)
           
 

Uses of OperatorChain in es.udc.gii.common.eaf.algorithm.parallel
 

Methods in es.udc.gii.common.eaf.algorithm.parallel that return OperatorChain
 OperatorChain<ReplaceOperator> ParallelEvolutionaryAlgorithm.getReplaceChain()
           
 OperatorChain<ReproductionOperator> ParallelEvolutionaryAlgorithm.getReproductionChain()
           
 OperatorChain<SelectionOperator> ParallelEvolutionaryAlgorithm.getSelectionChain()
           
 

Methods in es.udc.gii.common.eaf.algorithm.parallel with parameters of type OperatorChain
 void ParallelEvolutionaryAlgorithm.setReplaceChain(OperatorChain<ReplaceOperator> replaceChain)
           
 void ParallelEvolutionaryAlgorithm.setReproductionChain(OperatorChain<ReproductionOperator> reproductionChain)
           
 void ParallelEvolutionaryAlgorithm.setSelectionChain(OperatorChain<SelectionOperator> selectionChain)
           
 

Uses of OperatorChain in es.udc.gii.common.eaf.factory
 

Methods in es.udc.gii.common.eaf.factory that return OperatorChain
abstract  OperatorChain<EvaluationOperator> SimpleFactory.createEvaluationChain()
           
 OperatorChain<EvaluationOperator> XMLSimpleFactory.createEvaluationChain()
           
abstract  OperatorChain<ReplaceOperator> SimpleFactory.createReplaceChain()
           
 OperatorChain<ReplaceOperator> XMLSimpleFactory.createReplaceChain()
           
abstract  OperatorChain<ReproductionOperator> SimpleFactory.createReproductionChain()
           
 OperatorChain<ReproductionOperator> XMLSimpleFactory.createReproductionChain()
           
abstract  OperatorChain<SelectionOperator> SimpleFactory.createSelectionChain()
           
 OperatorChain<SelectionOperator> XMLSimpleFactory.createSelectionChain()