C# 클래스 SwarmOps.RepeatMin

Performs a number of optimization runs and returns the minimum fitness found. Respects feasibility (constraint satisfaction.) This does NOT allow for Preemptive Fitness Evaluation!
상속: Repeat
파일 보기 프로젝트 열기: DanWBR/dwsim3

공개 메소드들

메소드 설명
Fitness ( double parameters, double fitnessLimit ) : double

Compute the fitness by repeating a number of optimization runs and taking the best fitness achieved in any one of these runs.

RepeatMin ( Optimizer optimizer, int numRuns )

Construct the object.

메소드 상세

Fitness() 공개 메소드

Compute the fitness by repeating a number of optimization runs and taking the best fitness achieved in any one of these runs.
public Fitness ( double parameters, double fitnessLimit ) : double
parameters double Parameters to use for the Optimizer.
fitnessLimit double Preemptive Fitness Limit
리턴 double

RepeatMin() 공개 메소드

Construct the object.
public RepeatMin ( Optimizer optimizer, int numRuns )
optimizer Optimizer Optimizer to use.
numRuns int Number of optimization runs to perform.