Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.3/Tests/ProbabilisticTreeCreaterTest.cs @ 4106

Last change on this file since 4106 was 4106, checked in by gkronber, 14 years ago

Fixed bugs in SubtreeCrossover, ArgumentCreater and ArgumentDuplicater and updated unit tests for symbolic expression tree operators. #1103

File size: 3.6 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 System;
23using System.Collections.Generic;
24using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
25using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Creators;
26using HeuristicLab.Random;
27using Microsoft.VisualStudio.TestTools.UnitTesting;
28
29namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding_3._3.Tests {
30  [TestClass]
31  public class ProbabilisticTreeCreaterTest {
32    private const int POPULATION_SIZE = 1000;
33    private const int MAX_TREE_SIZE = 100;
34    private const int MAX_TREE_HEIGHT = 10;
35    private TestContext testContextInstance;
36
37    /// <summary>
38    ///Gets or sets the test context which provides
39    ///information about and functionality for the current test run.
40    ///</summary>
41    public TestContext TestContext {
42      get {
43        return testContextInstance;
44      }
45      set {
46        testContextInstance = value;
47      }
48    }
49
50    [TestMethod()]
51    public void ProbabilisticTreeCreaterDistributionsTest() {
52      var randomTrees = new List<SymbolicExpressionTree>();
53      var grammar = Grammars.CreateSimpleArithmeticGrammar();
54      var random = new MersenneTwister(31415);
55      for (int i = 0; i < POPULATION_SIZE; i++) {
56        randomTrees.Add(ProbabilisticTreeCreator.Create(random, grammar, MAX_TREE_SIZE, MAX_TREE_HEIGHT, 0, 0));
57      }
58
59      foreach (var tree in randomTrees) {
60        Util.IsValid(tree);
61      }
62      Assert.Inconclusive("ProbabilisticTreeCreator: " + Environment.NewLine +
63        Util.GetSizeDistributionString(randomTrees, 105, 5) + Environment.NewLine +
64        Util.GetFunctionDistributionString(randomTrees) + Environment.NewLine +
65        Util.GetNumberOfSubTreesDistributionString(randomTrees) + Environment.NewLine +
66        Util.GetTerminalDistributionString(randomTrees) + Environment.NewLine
67        );
68    }
69
70
71    [TestMethod()]
72    public void ProbabilisticTreeCreaterWithAdfDistributionsTest() {
73      var randomTrees = new List<SymbolicExpressionTree>();
74      var grammar = Grammars.CreateArithmeticAndAdfGrammar();
75      var random = new MersenneTwister(31415);
76      for (int i = 0; i < POPULATION_SIZE; i++) {
77        var tree = ProbabilisticTreeCreator.Create(random, grammar, MAX_TREE_SIZE, MAX_TREE_HEIGHT, 3, 3);
78        Util.IsValid(tree);
79        randomTrees.Add(tree);
80      }
81      Assert.Inconclusive("ProbabilisticTreeCreator: " + Environment.NewLine +
82        Util.GetSizeDistributionString(randomTrees, 105, 5) + Environment.NewLine +
83        Util.GetFunctionDistributionString(randomTrees) + Environment.NewLine +
84        Util.GetNumberOfSubTreesDistributionString(randomTrees) + Environment.NewLine +
85        Util.GetTerminalDistributionString(randomTrees) + Environment.NewLine
86        );
87    }
88  }
89}
Note: See TracBrowser for help on using the repository browser.