A Genetic Programming Framework for .NET

EngineOptions.MutationOnly Method 

Breeds a new Population using only mutation.

public static void MutationOnly(
   Random r,
   GeneticOperationArgs args,
   Selector selector
);

Parameters

r
A random number.
args
A GeneticOperationArgs that contains the data for performing Genetic Operations.
selector
A Selector delegate to use for selecting IndividualInfos to breed.

Exceptions

Exception Type Condition
ArgumentNullException Thrown when either r, args, or selector are null.

See Also

EngineOptions Class | GeneticProgrammingEngine.Internal Namespace | Breeder Delegate | Breeder Property