Changeset 9410
- Timestamp:
- 04/30/13 11:14:04 (12 years ago)
- Location:
- trunk/sources/HeuristicLab.Tests/HeuristicLab.Problems.TestFunctions-3.3
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Tests/HeuristicLab.Problems.TestFunctions-3.3/AckleyEvaluatorTest.cs
r7259 r9410 92 92 for (int dimension = target.MinimumProblemSize; dimension <= System.Math.Min(10, target.MaximumProblemSize); dimension++) { 93 93 point = target.GetBestKnownSolution(dimension); 94 actual = target.Evaluate Function(point);94 actual = target.Evaluate(point); 95 95 Assert.AreEqual(expected, actual); 96 96 } -
trunk/sources/HeuristicLab.Tests/HeuristicLab.Problems.TestFunctions-3.3/BealeEvaluatorTest.cs
r7259 r9410 92 92 for (int dimension = target.MinimumProblemSize; dimension <= System.Math.Min(10, target.MaximumProblemSize); dimension++) { 93 93 point = target.GetBestKnownSolution(dimension); 94 actual = target.Evaluate Function(point);94 actual = target.Evaluate(point); 95 95 Assert.AreEqual(expected, actual); 96 96 } -
trunk/sources/HeuristicLab.Tests/HeuristicLab.Problems.TestFunctions-3.3/BoothEvaluatorTest.cs
r7259 r9410 92 92 for (int dimension = target.MinimumProblemSize; dimension <= System.Math.Min(10, target.MaximumProblemSize); dimension++) { 93 93 point = target.GetBestKnownSolution(dimension); 94 actual = target.Evaluate Function(point);94 actual = target.Evaluate(point); 95 95 Assert.AreEqual(expected, actual); 96 96 } -
trunk/sources/HeuristicLab.Tests/HeuristicLab.Problems.TestFunctions-3.3/GriewankEvaluatorTest.cs
r7259 r9410 92 92 for (int dimension = target.MinimumProblemSize; dimension <= System.Math.Min(10, target.MaximumProblemSize); dimension++) { 93 93 point = target.GetBestKnownSolution(dimension); 94 actual = target.Evaluate Function(point);94 actual = target.Evaluate(point); 95 95 Assert.AreEqual(expected, actual); 96 96 } -
trunk/sources/HeuristicLab.Tests/HeuristicLab.Problems.TestFunctions-3.3/LevyEvaluatorTest.cs
r7259 r9410 92 92 for (int dimension = target.MinimumProblemSize; dimension <= System.Math.Min(10, target.MaximumProblemSize); dimension++) { 93 93 point = target.GetBestKnownSolution(dimension); 94 actual = target.Evaluate Function(point);94 actual = target.Evaluate(point); 95 95 Assert.AreEqual(expected, actual); 96 96 } -
trunk/sources/HeuristicLab.Tests/HeuristicLab.Problems.TestFunctions-3.3/MatyasEvaluatorTest.cs
r7259 r9410 92 92 for (int dimension = target.MinimumProblemSize; dimension <= System.Math.Min(10, target.MaximumProblemSize); dimension++) { 93 93 point = target.GetBestKnownSolution(dimension); 94 actual = target.Evaluate Function(point);94 actual = target.Evaluate(point); 95 95 Assert.AreEqual(expected, actual); 96 96 } -
trunk/sources/HeuristicLab.Tests/HeuristicLab.Problems.TestFunctions-3.3/RastriginEvaluatorTest.cs
r7259 r9410 92 92 for (int dimension = target.MinimumProblemSize; dimension <= System.Math.Min(10, target.MaximumProblemSize); dimension++) { 93 93 point = target.GetBestKnownSolution(dimension); 94 actual = target.Evaluate Function(point);94 actual = target.Evaluate(point); 95 95 Assert.AreEqual(expected, actual); 96 96 } -
trunk/sources/HeuristicLab.Tests/HeuristicLab.Problems.TestFunctions-3.3/RosenbrockEvaluatorTest.cs
r7259 r9410 92 92 for (int dimension = target.MinimumProblemSize; dimension <= System.Math.Min(10, target.MaximumProblemSize); dimension++) { 93 93 point = target.GetBestKnownSolution(dimension); 94 actual = target.Evaluate Function(point);94 actual = target.Evaluate(point); 95 95 Assert.AreEqual(expected, actual); 96 96 } -
trunk/sources/HeuristicLab.Tests/HeuristicLab.Problems.TestFunctions-3.3/SphereEvaluatorTest.cs
r7259 r9410 92 92 for (int dimension = target.MinimumProblemSize; dimension <= System.Math.Min(10, target.MaximumProblemSize); dimension++) { 93 93 point = target.GetBestKnownSolution(dimension); 94 actual = target.Evaluate Function(point);94 actual = target.Evaluate(point); 95 95 Assert.AreEqual(expected, actual); 96 96 } -
trunk/sources/HeuristicLab.Tests/HeuristicLab.Problems.TestFunctions-3.3/SumSquaresEvaluatorTest.cs
r7259 r9410 92 92 for (int dimension = target.MinimumProblemSize; dimension <= System.Math.Min(10, target.MaximumProblemSize); dimension++) { 93 93 point = target.GetBestKnownSolution(dimension); 94 actual = target.Evaluate Function(point);94 actual = target.Evaluate(point); 95 95 Assert.AreEqual(expected, actual); 96 96 } -
trunk/sources/HeuristicLab.Tests/HeuristicLab.Problems.TestFunctions-3.3/ZakharovEvaluatorTest.cs
r7259 r9410 92 92 for (int dimension = target.MinimumProblemSize; dimension <= System.Math.Min(10, target.MaximumProblemSize); dimension++) { 93 93 point = target.GetBestKnownSolution(dimension); 94 actual = target.Evaluate Function(point);94 actual = target.Evaluate(point); 95 95 Assert.AreEqual(expected, actual); 96 96 }
Note: See TracChangeset
for help on using the changeset viewer.