Uses of Interface
com.epochx.op.crossover.Crossover

Packages that use Crossover
com.epochx.core   
com.epochx.op.crossover   
 

Uses of Crossover in com.epochx.core
 

Methods in com.epochx.core that return Crossover
 Crossover<TYPE> GPAbstractModel.getCrossover()
          Retrieves the implementation of Crossover to use to perform the genetic operation of crossover between 2 parents.
 Crossover<TYPE> GPModel.getCrossover()
          Retrieves the implementation of Crossover to use to perform the genetic operation of crossover between 2 parents.
 

Methods in com.epochx.core with parameters of type Crossover
 void GPAbstractModel.setCrossover(Crossover<TYPE> crossover)
          Overwrites the default crossover operator.
 

Uses of Crossover in com.epochx.op.crossover
 

Classes in com.epochx.op.crossover that implement Crossover
 class KozaCrossover<TYPE>
          This class implements a Koza style crossover operation on two CandidatePrograms.
 class UniformPointCrossover<TYPE>
          This class implements standard crossover with uniform swap points.