A Genetic Programming Framework for .NET

EngineOptions Members

EngineOptions overview

Public Static Methods

Average Averages the specified raw fitness values.
DoNothing Does not perform any normalization on the specified fitness value.
MutationOnly Breeds a new Population using only mutation.
RecombinationThenMutation Breeds a new Population using both recombination and mutation.
Sum Sums the specified raw fitness values.
TopTenPercentSelection Selects an IndividualInfo at random from the top 10% in current Population.
UniformRandomSelection Selects an IndividualInfo at random from the current Population.

Public Instance Constructors

EngineOptions Constructor Initializes a new instance of the EngineOptions class.

Public Instance Properties

Aggregator Gets or sets the Aggregator delegate.
Breeder Gets or sets the Breeder delegate.
DeleteGeneratedDlls Gets or sets a value indicating whether generated .dll files should be deleted.
GenerationLimit Gets or sets the Generation limit.
MaximizeFitness Gets or sets a value indicating whether the GPEngine will maximize or minimize fitness.
MaxTreeDepth Gets or sets the maximum tree depth limit.
MaxTreeWidth Gets or sets the maximum tree width limit.
MutationRate Gets or sets the mutation rate.
Normalizer Gets or sets the Normalizer delegate.
OutputDirectory Gets or sets the output directory.
PopulationSize Gets or sets the initial Population size.
RecombinationRate Gets or sets the recombination rate.
RetestIndividuals Gets or sets a value indicating whether Individuals should be retested.
Seed Gets or sets a value used to seed a Random instance.
Selector Gets or sets the Selector delegate.
TestLimit Gets or sets the test limit.
UseAppDomain Gets or sets a value indicating whether a separate AppDomain should be used when compiling.

Public Instance Methods

Equals (inherited from Object) Determines whether the specified Object is equal to the current Object.
GetHashCode (inherited from Object) Serves as a hash function for a particular type, suitable for use in hashing algorithms and data structures like a hash table.
GetType (inherited from Object) Gets the Type of the current instance.
ToString (inherited from Object) Returns a String that represents the current Object.

Protected Instance Methods

Finalize (inherited from Object) Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
MemberwiseClone (inherited from Object) Creates a shallow copy of the current Object.

See Also

EngineOptions Class | GeneticProgrammingEngine.Internal Namespace | GPEngine Class