Uses of Class
jeco.kernel.problem.Solutions

Packages that use Solutions
jeco.kernel.algorithm   
jeco.kernel.algorithm.ge   
jeco.kernel.algorithm.moga   
jeco.kernel.algorithm.moge   
jeco.kernel.algorithm.mopso   
jeco.kernel.operator.assigner   
jeco.kernel.operator.replacement   
jeco.kernel.operator.selector   
jeco.kernel.problem   
jeco.kernel.qualityIndicators   
jeco.kernel.util   
jeco.lib.problems.combinatorial   
jeco.lib.problems.ddts   
jeco.lib.problems.dtlz   
jeco.lib.problems.floorplan   
jeco.lib.problems.zdt   
 

Uses of Solutions in jeco.kernel.algorithm
 

Methods in jeco.kernel.algorithm that return Solutions
abstract  Solutions Algorithm.execute()
           
 

Uses of Solutions in jeco.kernel.algorithm.ge
 

Methods in jeco.kernel.algorithm.ge that return Solutions
 Solutions GrammaticalEvolutionaryAlgorithm.execute()
           
 

Uses of Solutions in jeco.kernel.algorithm.moga
 

Fields in jeco.kernel.algorithm.moga declared as Solutions
protected  Solutions SPEA2.archive
           
protected  Solutions NSGAII.population
           
protected  Solutions SPEA2.population
           
 

Methods in jeco.kernel.algorithm.moga that return Solutions
 Solutions NSGAII.execute()
           
 Solutions SPEA2.execute()
           
 Solutions NSGAII.reduce(Solutions pop, int maxSize)
           
 Solutions SPEA2.reduce(Solutions pop, int maxSize)
           
 Solutions SPEA2.reduceByFitness(Solutions pop)
           
 

Methods in jeco.kernel.algorithm.moga with parameters of type Solutions
 void SPEA2.assignFitness(Solutions solutions)
           
 void SPEA2.expand(Solutions pop, Solutions all, int nElems)
           
 Solutions NSGAII.reduce(Solutions pop, int maxSize)
           
 Solutions SPEA2.reduce(Solutions pop, int maxSize)
           
 Solutions SPEA2.reduceByFitness(Solutions pop)
           
 

Uses of Solutions in jeco.kernel.algorithm.moge
 

Methods in jeco.kernel.algorithm.moge that return Solutions
 Solutions GrammaticalMultiObjectiveEvolutionaryAlgorithm.execute()
           
 

Uses of Solutions in jeco.kernel.algorithm.mopso
 

Methods in jeco.kernel.algorithm.mopso that return Solutions
 Solutions HNSPSO.execute()
           
 Solutions NSPSO.execute()
           
 Solutions OMOPSO.execute()
          Runs of the OMOPSO algorithm.
 

Uses of Solutions in jeco.kernel.operator.assigner
 

Methods in jeco.kernel.operator.assigner that return Solutions
 Solutions CrowdingDistance.execute(Solutions solutions)
           
 Solutions NicheCount.execute(Solutions solutions)
           
 

Methods in jeco.kernel.operator.assigner that return types with arguments of type Solutions
 java.util.ArrayList<Solutions> FrontsExtractor.execute(Solutions arg)
           
 

Methods in jeco.kernel.operator.assigner with parameters of type Solutions
 Solutions CrowdingDistance.execute(Solutions solutions)
           
 java.util.ArrayList<Solutions> FrontsExtractor.execute(Solutions arg)
           
 Solutions NicheCount.execute(Solutions solutions)
           
 

Uses of Solutions in jeco.kernel.operator.replacement
 

Methods in jeco.kernel.operator.replacement that return Solutions
 Solutions ReplacementOperation.execute(Solutions arg)
           
 

Methods in jeco.kernel.operator.replacement with parameters of type Solutions
 Solutions ReplacementOperation.execute(Solutions arg)
           
 

Uses of Solutions in jeco.kernel.operator.selector
 

Methods in jeco.kernel.operator.selector that return Solutions
 Solutions EliteSelectorOperator.execute(Solutions arg)
           
 

Methods in jeco.kernel.operator.selector with parameters of type Solutions
 Solution BinaryTournament.execute(Solutions solutions)
           
 Solution BinaryTournamentNSGAII.execute(Solutions population)
          Performs the operation
 Solutions EliteSelectorOperator.execute(Solutions arg)
           
abstract  Solution SelectionOperator.execute(Solutions solutions)
           
 Solution TournamentSelect.execute(Solutions solutions)
           
 

Uses of Solutions in jeco.kernel.problem
 

Methods in jeco.kernel.problem that return Solutions
 Solutions Problem.computeParetoOptimalFront(int n)
           
 Solutions Solutions.keepParetoNonDominated(java.util.Comparator<Solution> comparator)
           
abstract  Solutions Problem.newRandomSetOfSolutions(int size)
           
 

Uses of Solutions in jeco.kernel.qualityIndicators
 

Fields in jeco.kernel.qualityIndicators declared as Solutions
protected  Solutions UnaryEpsilon.referenceFront
          Reference front
 

Fields in jeco.kernel.qualityIndicators with type parameters of type Solutions
protected  java.util.ArrayList<java.util.ArrayList<Solutions>> UnaryEpsilon.fronts
          Approximation sets
protected  java.util.ArrayList<java.util.ArrayList<Solutions>> AttainmentSurface.frontsArray
          Approximation sets
 

Methods in jeco.kernel.qualityIndicators that return types with arguments of type Solutions
 java.util.ArrayList<Solutions> AttainmentSurface.extractAttainmentSurface(int attainmentSurfaceNumber)
           
 

Uses of Solutions in jeco.kernel.util
 

Methods in jeco.kernel.util that return Solutions
static Solutions Util.readFrontFromFile(java.lang.String filePath)
          Function that reads a set of solutions from a file.
 

Methods in jeco.kernel.util that return types with arguments of type Solutions
static java.util.ArrayList<Solutions> Util.readFrontsFromFile(java.lang.String filePath)
          Function that reads N sets of solutions from a file.
 

Method parameters in jeco.kernel.util with type arguments of type Solutions
static void Util.normalize(java.util.ArrayList<Solutions> setOfSolutions, int dim)
          Function that normalize a set of fronts in the interval [1,2]
static void Util.normalize(java.util.ArrayList<Solutions> setOfSolutions, int dim, double lowerBound, double upperBound)
          Function that normalizes a set of fronts in the given interval.
 

Uses of Solutions in jeco.lib.problems.combinatorial
 

Methods in jeco.lib.problems.combinatorial that return Solutions
 Solutions TSP.computeParetoOptimalFront(int n)
           
 Solutions TSP.newRandomSetOfSolutions(int size)
           
 

Uses of Solutions in jeco.lib.problems.ddts
 

Methods in jeco.lib.problems.ddts that return Solutions
 Solutions DynamicDataTypesInteger.newRandomSetOfSolutions(int size)
           
 Solutions DynamicDataTypesReal.newRandomSetOfSolutions(int size)
           
 

Uses of Solutions in jeco.lib.problems.dtlz
 

Methods in jeco.lib.problems.dtlz that return Solutions
abstract  Solutions DTLZ.computeParetoOptimalFront(int n)
           
 Solutions DTLZ2.computeParetoOptimalFront(int n)
           
 Solutions DTLZ5.computeParetoOptimalFront(int n)
           
 Solutions DTLZ7.computeParetoOptimalFront(int n)
           
 Solutions DTLZ.newRandomSetOfSolutions(int size)
           
 

Uses of Solutions in jeco.lib.problems.floorplan
 

Methods in jeco.lib.problems.floorplan that return Solutions
 Solutions FloorplanPolish.newRandomSetOfSolutions(int size)
           
 Solutions LiquidChannels.newRandomSetOfSolutions(int size)
           
 

Uses of Solutions in jeco.lib.problems.zdt
 

Methods in jeco.lib.problems.zdt that return Solutions
abstract  Solutions ZDT.computeParetoOptimalFront(int n)
           
 Solutions ZDT1.computeParetoOptimalFront(int n)
           
 Solutions ZDT2.computeParetoOptimalFront(int n)
           
 Solutions ZDT3.computeParetoOptimalFront(int n)
           
 Solutions ZDT4.computeParetoOptimalFront(int n)
           
 Solutions ZDT6.computeParetoOptimalFront(int n)
           
 Solutions ZDT.newRandomSetOfSolutions(int size)