Uses of Interface
lio.crossover.Crossover

Packages that use Crossover
lio.crossover.bitchain   
lio.crossover.contchain   
lio.crossover.permutations   
lio.search.genetic   
 

Uses of Crossover in lio.crossover.bitchain
 

Classes in lio.crossover.bitchain that implement Crossover
 class HUX
          Implements the HUX crossover used in CHC.
 class OnePointCrossover
          Implements the one point crossover operator for chains of bits.
 class TwoPointCrossover
          Implements the two point crossover operator for chains of bits.
 class UniformCrossover
          Implements the uniform crossover for chains of bits.
 

Uses of Crossover in lio.crossover.contchain
 

Classes in lio.crossover.contchain that implement Crossover
 class ArithmeticalCrossover
          Implements the arithmetical crossover operator for chains of reals.
 class BLXAlphaCrossover
          Implements the BLX-Alpha crossover operator for chains of reals.
 class DiscreteCrossover
          Implements the discrete crossover operator for chains of reals.
 class ExtendedIntermediateCrossover
          Implements the extended intermediate crossover operator for chains of reals.
 class ExtendedLineCrossover
          Implements the extended line crossover operator for chains of reals.
 class FlatCrossover
          Implements the flat crossover operator for chains of reals.
 class LinearCrossover
          Implements the linear crossover operator for chains of reals.
 class SimpleCrossover
          Implements the simple crossover operator for chains of reals.
 class WrightsHeuristicCrossover
          Implements the Wright's heuristic crossover operator for chains of reals.
 

Uses of Crossover in lio.crossover.permutations
 

Classes in lio.crossover.permutations that implement Crossover
 class OrderCrossover
          Implements the order crossover operator for permutations.
 class PMX
          Implements PMX crossover operator for permutations.
 

Uses of Crossover in lio.search.genetic
 

Methods in lio.search.genetic that return Crossover
 Crossover StdGeneticAlgorithm.getCrossover()
           
 

Methods in lio.search.genetic with parameters of type Crossover
 void StdGeneticAlgorithm.setCrossover(Crossover crossover)