Show / Hide Table of Contents

Class GASettings

Represents common settings for a GA.

Inheritance
System.Object
GASettings
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: System.Dynamic.ExpandoObject
Assembly: cs.temp.dll.dll
Syntax
public class GASettings

Properties

CrossOverPercentage

Gets or sets the crossover percentage.

Declaration
public int CrossOverPercentage { get; set; }
Property Value
System.Int32

Default

Returns default GA settings.

Declaration
public static GASettings Default { get; }
Property Value
GASettings

ElitismPercentage

Gets or sets the elitism in percentage.

Declaration
public int ElitismPercentage { get; set; }
Property Value
System.Int32

MaxGenerations

Gets or sets the maximum generations.

Declaration
public int MaxGenerations { get; set; }
Property Value
System.Int32

MutationPercentage

Gets or sets the mutation percentage.

Declaration
public int MutationPercentage { get; set; }
Property Value
System.Int32

PopulationSize

Gets or sets the population size.

Declaration
public int PopulationSize { get; set; }
Property Value
System.Int32

StagnationCount

Gets or sets the stagnation count.

Declaration
public int StagnationCount { get; set; }
Property Value
System.Int32

Back to top Built by Itinero, MIT licensed.