GeneticSharp.Domain.Terminations Namespace

GeneticSharp

GeneticSharp.Domain.Terminations Namespace GeneticSharp

[Missing <summary> documentation for "N:GeneticSharp.Domain.Terminations"]

Classes

  Class Description
Public class AndTermination
An termination where you can combine others ITerminations with a AND logical operator.
Public class FitnessStagnationTermination
Fitness Stagnation Termination.
Remarks

The genetic algorithm will be terminate when the best chromosome's fitness has no change in the last generations specified.
Public class FitnessThresholdTermination
Fitness Threshold Termination
Remarks

The genetic algorithm will be terminate when the best chromosome reach the expected fitness.
Public class GenerationNumberTermination
Generation number termination.
Remarks

The genetic algorithm will be terminate when reach the expected generation number.
Public class LogicalOperatorTerminationBase
A base class for logical operator terminations.
Public class OrTermination
An termination where you can combine others ITerminations with a OR logical operator.
Public class TerminationBase
Base class for ITerminations's implementations.
Public class TerminationService
Termination service.
Public class TimeEvolvingTermination
Time Evolving Termination.
Remarks

The genetic algorithm will be terminate when the evolving exceed the max time specified.
Interfaces

  Interface Description
Public interface ITermination
Defines the interface for a termination condition.