SwarmOps.ProblemIndex.SetFitness C# (CSharp) 메소드

SetFitness() 공개 메소드

Set the fitness associated with the i'th problem.
public SetFitness ( int i, double fitness ) : void
i int
fitness double
리턴 void
        public void SetFitness(int i, double fitness)
        {
            Index[i].Fitness = fitness;
        }