SwarmOps.ProblemIndex.GetProblem C# (CSharp) Method

GetProblem() public method

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
return Problem
        public Problem GetProblem(int i)
        {
            return Index[i].Problem;
        }