Uses of Interface
com.epochx.op.initialisation.Initialiser

Packages that use Initialiser
com.epochx.core   
com.epochx.op.initialisation   
 

Uses of Initialiser in com.epochx.core
 

Methods in com.epochx.core that return Initialiser
 Initialiser<TYPE> GPAbstractModel.getInitialiser()
          Retrieves the Initialiser which will generate the first generation population from which the evolution will proceed.
 Initialiser<TYPE> GPModel.getInitialiser()
          Retrieves the Initialiser which will generate the first generation population from which the evolution will proceed.
 

Methods in com.epochx.core with parameters of type Initialiser
 void GPAbstractModel.setInitialiser(Initialiser<TYPE> initialiser)
          Overwrites the default initialiser.
 

Uses of Initialiser in com.epochx.op.initialisation
 

Classes in com.epochx.op.initialisation that implement Initialiser
 class FullInitialiser<TYPE>
          Initialisation implementation which produces full program trees.
 class GrowInitialiser<TYPE>
          Initialisation implementation which randomly grows program trees down to a maximum depth.
 class RampedHalfAndHalfInitialiser<TYPE>
          Initialisation implementation which uses a combination of full and grow initialisers to create an initial population of CandidatePrograms.