Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Encodings.RealVectorEncoding/3.3/Tests/SimulatedBinaryCrossoverTest.cs @ 4900

Last change on this file since 4900 was 4872, checked in by abeham, 14 years ago

#1271

  • Fixed test for SBX after changing SBX in r3172
File size: 6.3 KB
RevLine 
[3742]1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
[4068]22using HeuristicLab.Core;
23using HeuristicLab.Data;
[3742]24using HeuristicLab.Encodings.RealVectorEncoding;
[2936]25using Microsoft.VisualStudio.TestTools.UnitTesting;
26
[3053]27namespace HeuristicLab.Encodings.RealVectorEncoding_33.Tests {
[2936]28
29
30  /// <summary>
31  ///This is a test class for SimulatedBinaryCrossoverTest and is intended
32  ///to contain all SimulatedBinaryCrossoverTest Unit Tests
33  ///</summary>
34  [TestClass()]
35  public class SimulatedBinaryCrossoverTest {
36
37
38    private TestContext testContextInstance;
39
40    /// <summary>
41    ///Gets or sets the test context which provides
42    ///information about and functionality for the current test run.
43    ///</summary>
44    public TestContext TestContext {
45      get {
46        return testContextInstance;
47      }
48      set {
49        testContextInstance = value;
50      }
51    }
52
53    #region Additional test attributes
54    //
55    //You can use the following additional attributes as you write your tests:
56    //
57    //Use ClassInitialize to run code before running the first test in the class
58    //[ClassInitialize()]
59    //public static void MyClassInitialize(TestContext testContext)
60    //{
61    //}
62    //
63    //Use ClassCleanup to run code after all tests in a class have run
64    //[ClassCleanup()]
65    //public static void MyClassCleanup()
66    //{
67    //}
68    //
69    //Use TestInitialize to run code before running each test
70    //[TestInitialize()]
71    //public void MyTestInitialize()
72    //{
73    //}
74    //
75    //Use TestCleanup to run code after each test has run
76    //[TestCleanup()]
77    //public void MyTestCleanup()
78    //{
79    //}
80    //
81    #endregion
82
83    /// <summary>
84    ///A test for Cross
85    ///</summary>
86    [TestMethod()]
[3053]87    [DeploymentItem("HeuristicLab.Encodings.RealVectorEncoding-3.3.dll")]
[2936]88    public void SimulatedBinaryCrossoverCrossTest() {
89      SimulatedBinaryCrossover_Accessor target = new SimulatedBinaryCrossover_Accessor(new PrivateObject(typeof(SimulatedBinaryCrossover)));
[3060]90      ItemArray<RealVector> parents;
[2936]91      TestRandom random = new TestRandom();
92      bool exceptionFired;
93      // The following test checks if there is an exception when there are more than 2 parents
94      random.Reset();
[3060]95      parents = new ItemArray<RealVector>(new RealVector[] { new RealVector(5), new RealVector(6), new RealVector(4) });
[2936]96      exceptionFired = false;
97      try {
[3060]98        RealVector actual;
[2936]99        actual = target.Cross(random, parents);
[4872]100      } catch (System.ArgumentException) {
[2936]101        exceptionFired = true;
102      }
103      Assert.IsTrue(exceptionFired);
104      // The following test checks if there is an exception when there are less than 2 parents
105      random.Reset();
[3060]106      parents = new ItemArray<RealVector>(new RealVector[] { new RealVector(4) });
[2936]107      exceptionFired = false;
108      try {
[3060]109        RealVector actual;
[2936]110        actual = target.Cross(random, parents);
[4872]111      } catch (System.ArgumentException) {
[2936]112        exceptionFired = true;
113      }
114      Assert.IsTrue(exceptionFired);
115    }
116
117    /// <summary>
118    ///A test for Apply
119    ///</summary>
120    [TestMethod()]
121    public void SimulatedBinaryCrossoverApplyTest() {
122      TestRandom random = new TestRandom();
[3060]123      RealVector parent1, parent2, expected, actual;
[3048]124      DoubleValue contiguity;
[2936]125      bool exceptionFired;
126      // The following test is not based on published examples
127      random.Reset();
128      random.DoubleNumbers = new double[] { 0.3, 0.9, 0.7, 0.2, 0.8, 0.1, 0.2, 0.3, 0.4, 0.8, 0.7 };
[3048]129      contiguity = new DoubleValue(0.3);
[3060]130      parent1 = new RealVector(new double[] { 0.2, 0.2, 0.3, 0.5, 0.1 });
131      parent2 = new RealVector(new double[] { 0.4, 0.1, 0.3, 0.2, 0.8 });
[4872]132      expected = new RealVector(new double[] { 0.644880972204315, 0.0488239539275703, 0.3, 0.5, 0.1 });
[2936]133      actual = SimulatedBinaryCrossover.Apply(random, parent1, parent2, contiguity);
[3061]134      Assert.IsTrue(Auxiliary.RealVectorIsAlmostEqualByPosition(actual, expected));
[2936]135      // The following test is not based on published examples
136      random.Reset();
137      random.DoubleNumbers = new double[] { 0.3, 0.9, 0.7, 0.2, 0.8, 0.1, 0.2, 0.3, 0.4, 0.8, 0.7 };
[3048]138      contiguity = new DoubleValue(0.3);
[3060]139      parent1 = new RealVector(new double[] { 0.2, 0.2, 0.3, 0.5, 0.1, 0.9 }); // this parent is longer
140      parent2 = new RealVector(new double[] { 0.4, 0.1, 0.3, 0.2, 0.8 });
[2936]141      exceptionFired = false;
142      try {
143        actual = SimulatedBinaryCrossover.Apply(random, parent1, parent2, contiguity);
[4872]144      } catch (System.ArgumentException) {
[2936]145        exceptionFired = true;
146      }
147      Assert.IsTrue(exceptionFired);
148      // The following test is not based on published examples
149      random.Reset();
150      random.DoubleNumbers = new double[] { 0.3, 0.9, 0.7, 0.2, 0.8, 0.1, 0.2, 0.3, 0.4, 0.8, 0.7 };
[3048]151      contiguity = new DoubleValue(-0.3);  //  contiguity < 0
[4068]152      parent1 = new RealVector(new double[] { 0.2, 0.2, 0.3, 0.5, 0.1 });
[3060]153      parent2 = new RealVector(new double[] { 0.4, 0.1, 0.3, 0.2, 0.8 });
[2936]154      exceptionFired = false;
155      try {
156        actual = SimulatedBinaryCrossover.Apply(random, parent1, parent2, contiguity);
[4872]157      } catch (System.ArgumentException) {
[2936]158        exceptionFired = true;
159      }
160      Assert.IsTrue(exceptionFired);
161    }
162
163    /// <summary>
164    ///A test for SimulatedBinaryCrossover Constructor
165    ///</summary>
166    [TestMethod()]
167    public void SimulatedBinaryCrossoverConstructorTest() {
168      SimulatedBinaryCrossover target = new SimulatedBinaryCrossover();
169    }
170  }
171}
Note: See TracBrowser for help on using the repository browser.