Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 3832 was 3742, checked in by gkronber, 15 years ago

Fixed GPL license headers and deleted files which are not referenced by projects. #893

File size: 6.4 KB
Line 
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
22using HeuristicLab.Encodings.RealVectorEncoding;
23using Microsoft.VisualStudio.TestTools.UnitTesting;
24using HeuristicLab.Common;
25using HeuristicLab.Core;
26using HeuristicLab.Data;
27using HeuristicLab.Parameters;
28
29namespace HeuristicLab.Encodings.RealVectorEncoding_33.Tests {
30
31
32  /// <summary>
33  ///This is a test class for SimulatedBinaryCrossoverTest and is intended
34  ///to contain all SimulatedBinaryCrossoverTest Unit Tests
35  ///</summary>
36  [TestClass()]
37  public class SimulatedBinaryCrossoverTest {
38
39
40    private TestContext testContextInstance;
41
42    /// <summary>
43    ///Gets or sets the test context which provides
44    ///information about and functionality for the current test run.
45    ///</summary>
46    public TestContext TestContext {
47      get {
48        return testContextInstance;
49      }
50      set {
51        testContextInstance = value;
52      }
53    }
54
55    #region Additional test attributes
56    //
57    //You can use the following additional attributes as you write your tests:
58    //
59    //Use ClassInitialize to run code before running the first test in the class
60    //[ClassInitialize()]
61    //public static void MyClassInitialize(TestContext testContext)
62    //{
63    //}
64    //
65    //Use ClassCleanup to run code after all tests in a class have run
66    //[ClassCleanup()]
67    //public static void MyClassCleanup()
68    //{
69    //}
70    //
71    //Use TestInitialize to run code before running each test
72    //[TestInitialize()]
73    //public void MyTestInitialize()
74    //{
75    //}
76    //
77    //Use TestCleanup to run code after each test has run
78    //[TestCleanup()]
79    //public void MyTestCleanup()
80    //{
81    //}
82    //
83    #endregion
84
85    /// <summary>
86    ///A test for Cross
87    ///</summary>
88    [TestMethod()]
89    [DeploymentItem("HeuristicLab.Encodings.RealVectorEncoding-3.3.dll")]
90    public void SimulatedBinaryCrossoverCrossTest() {
91      SimulatedBinaryCrossover_Accessor target = new SimulatedBinaryCrossover_Accessor(new PrivateObject(typeof(SimulatedBinaryCrossover)));
92      ItemArray<RealVector> parents;
93      TestRandom random = new TestRandom();
94      bool exceptionFired;
95      // The following test checks if there is an exception when there are more than 2 parents
96      random.Reset();
97      parents = new ItemArray<RealVector>(new RealVector[] { new RealVector(5), new RealVector(6), new RealVector(4) });
98      exceptionFired = false;
99      try {
100        RealVector actual;
101        actual = target.Cross(random, parents);
102      }
103      catch (System.ArgumentException) {
104        exceptionFired = true;
105      }
106      Assert.IsTrue(exceptionFired);
107      // The following test checks if there is an exception when there are less than 2 parents
108      random.Reset();
109      parents = new ItemArray<RealVector>(new RealVector[] { new RealVector(4) });
110      exceptionFired = false;
111      try {
112        RealVector actual;
113        actual = target.Cross(random, parents);
114      } catch (System.ArgumentException) {
115        exceptionFired = true;
116      }
117      Assert.IsTrue(exceptionFired);
118    }
119
120    /// <summary>
121    ///A test for Apply
122    ///</summary>
123    [TestMethod()]
124    public void SimulatedBinaryCrossoverApplyTest() {
125      TestRandom random = new TestRandom();
126      RealVector parent1, parent2, expected, actual;
127      DoubleValue contiguity;
128      bool exceptionFired;
129      // The following test is not based on published examples
130      random.Reset();
131      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 };
132      contiguity = new DoubleValue(0.3);
133      parent1 = new RealVector(new double[] { 0.2, 0.2, 0.3, 0.5, 0.1 });
134      parent2 = new RealVector(new double[] { 0.4, 0.1, 0.3, 0.2, 0.8 });
135      expected = new RealVector(new double[] { 1.11032829834638, -0.0145477755417797, 0.3, 0.5, 0.1 });
136      actual = SimulatedBinaryCrossover.Apply(random, parent1, parent2, contiguity);
137      Assert.IsTrue(Auxiliary.RealVectorIsAlmostEqualByPosition(actual, expected));
138      // The following test is not based on published examples
139      random.Reset();
140      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 };
141      contiguity = new DoubleValue(0.3);
142      parent1 = new RealVector(new double[] { 0.2, 0.2, 0.3, 0.5, 0.1, 0.9 }); // this parent is longer
143      parent2 = new RealVector(new double[] { 0.4, 0.1, 0.3, 0.2, 0.8 });
144      exceptionFired = false;
145      try {
146        actual = SimulatedBinaryCrossover.Apply(random, parent1, parent2, contiguity);
147      } catch (System.ArgumentException) {
148        exceptionFired = true;
149      }
150      Assert.IsTrue(exceptionFired);
151      // The following test is not based on published examples
152      random.Reset();
153      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 };
154      contiguity = new DoubleValue(-0.3);  //  contiguity < 0
155      parent1 = new RealVector(new double[] { 0.2, 0.2, 0.3, 0.5, 0.1});
156      parent2 = new RealVector(new double[] { 0.4, 0.1, 0.3, 0.2, 0.8 });
157      exceptionFired = false;
158      try {
159        actual = SimulatedBinaryCrossover.Apply(random, parent1, parent2, contiguity);
160      }
161      catch (System.ArgumentException) {
162        exceptionFired = true;
163      }
164      Assert.IsTrue(exceptionFired);
165    }
166
167    /// <summary>
168    ///A test for SimulatedBinaryCrossover Constructor
169    ///</summary>
170    [TestMethod()]
171    public void SimulatedBinaryCrossoverConstructorTest() {
172      SimulatedBinaryCrossover target = new SimulatedBinaryCrossover();
173    }
174  }
175}
Note: See TracBrowser for help on using the repository browser.