Uses of Interface
com.epochx.op.mutation.Mutation

Packages that use Mutation
com.epochx.core   
com.epochx.op.mutation   
 

Uses of Mutation in com.epochx.core
 

Methods in com.epochx.core that return Mutation
 Mutation<TYPE> GPAbstractModel.getMutator()
          Retrieves the implementation of Mutator to use to perform the genetic operation of mutation on a CandidateProgram.
 Mutation<TYPE> GPModel.getMutator()
          Retrieves the implementation of Mutator to use to perform the genetic operation of mutation on a CandidateProgram.
 

Methods in com.epochx.core with parameters of type Mutation
 void GPAbstractModel.setMutator(Mutation<TYPE> mutator)
          Overwrites the default mutator used to perform mutation.
 

Uses of Mutation in com.epochx.op.mutation
 

Classes in com.epochx.op.mutation that implement Mutation
 class PointMutation<TYPE>
          This class performs a simple point mutation on a CandidateProgram.
 class SubtreeMutation<TYPE>
          This class performs a subtree mutation on a CandidateProgram.