Uses of Class
lio.LiOTask

Packages that use LiOTask
lio   
lio.core   
lio.generators.bitchain   
lio.generators.contchain   
lio.generators.permutation   
lio.mutation.contchain   
lio.probdistributions.contchain   
lio.search   
lio.search.genetic   
lio.search.local.greedy   
lio.search.local.hillclimbing   
lio.search.local.simulatedannealing   
lio.search.probabilistic   
lio.search.pso   
lio.search.pso.contchain   
problems.bitchain   
problems.contchain   
problems.permutation   
 

Uses of LiOTask in lio
 

Fields in lio declared as LiOTask
static LiOTask LiOEnv.task
          Task which is going to be solved
 

Uses of LiOTask in lio.core
 

Methods in lio.core with parameters of type LiOTask
 void LiODependentResource.getTaskInformation(LiOTask task)
          Allows passing information of the task to the resource.
 

Uses of LiOTask in lio.generators.bitchain
 

Methods in lio.generators.bitchain with parameters of type LiOTask
 void RandomGenerator.getTaskInformation(LiOTask task)
          Extracts information of the task necessary to create individuals.
 void PseudoRandomGenerator.getTaskInformation(LiOTask task)
          Extracts information of the task necessary to create individuals.
 

Uses of LiOTask in lio.generators.contchain
 

Methods in lio.generators.contchain with parameters of type LiOTask
 void RandomGenerator.getTaskInformation(LiOTask task)
          Extracts information of the task necessary to create individuals.
 

Uses of LiOTask in lio.generators.permutation
 

Methods in lio.generators.permutation with parameters of type LiOTask
 void RandomGenerator.getTaskInformation(LiOTask task)
          Extracts information of the task necessary to create individuals.
 

Uses of LiOTask in lio.mutation.contchain
 

Methods in lio.mutation.contchain with parameters of type LiOTask
 void RandomMutation.getTaskInformation(LiOTask task)
          Allows passing information of the task to the resource.
 void MinMaxMutation.getTaskInformation(LiOTask task)
          Allows passing information of the task to the resource.
 

Uses of LiOTask in lio.probdistributions.contchain
 

Methods in lio.probdistributions.contchain with parameters of type LiOTask
 void MarginalProbabilityVector.getTaskInformation(LiOTask task)
           
 

Uses of LiOTask in lio.search
 

Methods in lio.search with parameters of type LiOTask
abstract  boolean LiOSearch.worksWith(LiOTask kindOfTask)
          Allows knowing if the specified algorithm is able to process the task.
 

Uses of LiOTask in lio.search.genetic
 

Methods in lio.search.genetic with parameters of type LiOTask
 boolean StdGeneticAlgorithm.worksWith(LiOTask kindOfTask)
           
 boolean CHC.worksWith(LiOTask kindOfTask)
           
 

Uses of LiOTask in lio.search.local.greedy
 

Subclasses of LiOTask in lio.search.local.greedy
 class LiOGreedyTask
          This class extends LiOTask in order to provide some methods needed to perform greedy based construction of solutions.
 

Methods in lio.search.local.greedy with parameters of type LiOTask
 boolean GreedyConstruction.worksWith(LiOTask kindOfTask)
          Checks the compatibility of the algorithm with the task that is going to be solved.
 boolean GRASP.worksWith(LiOTask kindOfTask)
          Overloads stopCondition function of LiOSearch.
 

Uses of LiOTask in lio.search.local.hillclimbing
 

Methods in lio.search.local.hillclimbing with parameters of type LiOTask
 boolean MRHillClimbing.worksWith(LiOTask kindOfTask)
           
 boolean ILS.worksWith(LiOTask kindOfTask)
           
 

Uses of LiOTask in lio.search.local.simulatedannealing
 

Methods in lio.search.local.simulatedannealing with parameters of type LiOTask
 boolean SA.worksWith(LiOTask kindOfTask)
           
 

Uses of LiOTask in lio.search.probabilistic
 

Methods in lio.search.probabilistic with parameters of type LiOTask
 boolean PBIL.worksWith(LiOTask kindOfTask)
           
 boolean EDA.worksWith(LiOTask kindOfTask)
           
 

Uses of LiOTask in lio.search.pso
 

Methods in lio.search.pso with parameters of type LiOTask
 boolean PSO.worksWith(LiOTask task)
           
 

Uses of LiOTask in lio.search.pso.contchain
 

Methods in lio.search.pso.contchain with parameters of type LiOTask
 void StdContParticleGenerator.getTaskInformation(LiOTask task)
          Gets the necessary information from the task
 

Uses of LiOTask in problems.bitchain
 

Subclasses of LiOTask in problems.bitchain
 class Ackley
          Implements the Ackley function for binary representations.
 class CheckerBoard
          Implements the CheckerBoard problem whose optimum is an string with no consecutive positions with the same value.
 class Colville
          Implements the Colville function for binary representations.
 class DecomposableProblem
           
 class EqualProducts
           
 class FC2
           
 class FC3
           
 class FC4
           
 class FC5
           
 class Griewangk
          Implements the Griewangk function for binary representations.
 class MMDP
          Implements the multiple massive deceptive problem
 class OneMax
          Implements the classical OneMax problem
 class Plateau
           
 class Powell
          Implements the Powell function for binary representations.
 class Rastrigin
          Implements the Rastrigin function for binary representations.
 class Rosenbrock
          Implements the Rosenbrock function for binary representations.
 class Schwefel
          Implements the Schwefel function for binary representations.
 class SixPeaks
          Implements the deceptive Six Peaks function.
 

Uses of LiOTask in problems.contchain
 

Subclasses of LiOTask in problems.contchain
 class SumCan
          Implements the classical OneMax problem as a real coded problem.
 

Uses of LiOTask in problems.permutation
 

Subclasses of LiOTask in problems.permutation
 class PermutationExample
          Implements a Dummy task for permutations whose optimum is that whose value in position "i" is "i".
 class SymmetricTSP
          Implements a Symmetric TSP task.