ICandidate<TSolution> Interface

Represents a candidate (solution candidate) with a solution of type TSolution and an associated evaluation value (e.g., fitness, energy, etc.).

Definition

Namespace: Numerics.NET.Optimization
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.0
C#
public interface ICandidate<TSolution>

Type Parameters

TSolution
The type representing the solution (e.g., double[], string, etc.).

Properties

Index Gets the index of the candidate.
Solution Gets or sets the solution.
Value Gets or sets the value.

See Also