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

GetProblem() 공개 메소드

Return the i'th optimization problem, sorted so that the problems with the worst fitness have lowest indices.
public GetProblem ( int i ) : Problem
i int
리턴 Problem
        public Problem GetProblem(int i)
        {
            return Index[i].Problem;
        }