Show / Hide Table of Contents

Struct Individual<TSolution, TFitness>

Represents an individual in a GA population.

Inherited Members
System.ValueType.Equals(System.Object)
System.ValueType.GetHashCode()
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetType()
Namespace: System.Dynamic.ExpandoObject
Assembly: cs.temp.dll.dll
Syntax
public struct Individual<TSolution, TFitness>
Type Parameters
TSolution

TFitness

Properties

Fitness

Gets or sets the fitness.

Declaration
public TFitness Fitness { get; set; }
Property Value
TFitness

Solution

Gets or sets the solution.

Declaration
public TSolution Solution { get; set; }
Property Value
TSolution

Methods

ToString()

Returns a string representing this instance.

Declaration
public override string ToString()
Returns
System.String

Overrides
System.ValueType.ToString()
Back to top Built by Itinero, MIT licensed.