Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Tests/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4/ReplaceBranchManipulationTest.cs @ 9741

Last change on this file since 9741 was 9456, checked in by swagner, 11 years ago

Updated copyright year and added some missing license headers (#1889)

File size: 3.0 KB
RevLine 
[4189]1#region License Information
2/* HeuristicLab
[9456]3 * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[4189]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 System;
23using System.Collections.Generic;
24using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
25using HeuristicLab.Random;
26using Microsoft.VisualStudio.TestTools.UnitTesting;
27
[7915]28namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding_34.Tests {
[4189]29  [TestClass]
30  public class ReplaceBranchManipulationTest {
31    private const int POPULATION_SIZE = 1000;
[5549]32    private const int MAX_TREE_LENGTH = 100;
33    private const int MAX_TREE_DEPTH = 10;
[4189]34    private TestContext testContextInstance;
35
36    /// <summary>
37    ///Gets or sets the test context which provides
38    ///information about and functionality for the current test run.
39    ///</summary>
40    public TestContext TestContext {
41      get {
42        return testContextInstance;
43      }
44      set {
45        testContextInstance = value;
46      }
47    }
48
49    [TestMethod()]
50    public void ReplaceBranchManipulationDistributionsTest() {
[5549]51      SymbolicExpressionTreeStringFormatter formatter = new SymbolicExpressionTreeStringFormatter();
52      var trees = new List<ISymbolicExpressionTree>();
[4189]53      var grammar = Grammars.CreateArithmeticAndAdfGrammar();
54      var random = new MersenneTwister(31415);
55      for (int i = 0; i < POPULATION_SIZE; i++) {
[5686]56        var tree = ProbabilisticTreeCreator.Create(random, grammar, MAX_TREE_LENGTH, MAX_TREE_DEPTH);
57        SubroutineCreater.CreateSubroutine(random, tree, MAX_TREE_LENGTH, MAX_TREE_DEPTH, 3, 3);
[5549]58        string originalTree = formatter.Format(tree);
59        ReplaceBranchManipulation.ReplaceRandomBranch(random, tree, MAX_TREE_LENGTH, MAX_TREE_DEPTH);
60        string manipulatedTree = formatter.Format(tree);
61        Assert.IsFalse(originalTree == manipulatedTree);
[5367]62        Util.IsValid(tree);
63        trees.Add(tree);
[4189]64      }
[5367]65      Console.WriteLine("ReplaceBranchManipulation: " + Environment.NewLine +
[4189]66        Util.GetSizeDistributionString(trees, 105, 5) + Environment.NewLine +
67        Util.GetFunctionDistributionString(trees) + Environment.NewLine +
[5733]68        Util.GetNumberOfSubtreesDistributionString(trees) + Environment.NewLine +
[4189]69        Util.GetTerminalDistributionString(trees) + Environment.NewLine
70        );
71    }
72  }
73}
Note: See TracBrowser for help on using the repository browser.