Esempio n. 1
0
 public void LevyEvaluateFunctionTest() {
   LevyEvaluator target = new LevyEvaluator();
   RealVector point = null;
   double expected = target.BestKnownQuality;
   double actual;
   for (int dimension = target.MinimumProblemSize; dimension <= System.Math.Min(10, target.MaximumProblemSize); dimension++) {
     point = target.GetBestKnownSolution(dimension);
     actual = target.Evaluate(point);
     Assert.AreEqual(expected, actual);
   }
 }
Esempio n. 2
0
        public void LevyEvaluateFunctionTest()
        {
            LevyEvaluator target   = new LevyEvaluator();
            RealVector    point    = null;
            double        expected = target.BestKnownQuality;
            double        actual;

            for (int dimension = target.MinimumProblemSize; dimension <= System.Math.Min(10, target.MaximumProblemSize); dimension++)
            {
                point  = target.GetBestKnownSolution(dimension);
                actual = target.Evaluate(point);
                Assert.AreEqual(expected, actual);
            }
        }