Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Tests/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4/ProbabilisticTreeCreaterTest.cs @ 9787

Last change on this file since 9787 was 9770, checked in by mkommend, 12 years ago

#2088: Removed useless brackets in the TestMethod attribute and added test categories and properties for SymExpTreeEncoding unit test.

File size: 4.8 KB
RevLine 
[3360]1#region License Information
2/* HeuristicLab
[9456]3 * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[3360]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;
[3294]23using System.Collections.Generic;
[5686]24using System.Diagnostics;
[3294]25using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
26using HeuristicLab.Random;
[4068]27using Microsoft.VisualStudio.TestTools.UnitTesting;
[3294]28
[9764]29namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Tests {
[3294]30  [TestClass]
31  public class ProbabilisticTreeCreaterTest {
[5549]32    private const int POPULATION_SIZE = 10000;
33    private const int MAX_TREE_LENGTH = 100;
34    private const int MAX_TREE_DEPTH = 10;
[3294]35    private TestContext testContextInstance;
36
37    [TestMethod()]
[9770]38    [TestCategory("Encodings.SymbolicExpressionTree")]
39    [TestProperty("Time", "long")]
[3338]40    public void ProbabilisticTreeCreaterDistributionsTest() {
[5549]41      var randomTrees = new List<ISymbolicExpressionTree>();
[3338]42      var grammar = Grammars.CreateSimpleArithmeticGrammar();
[3369]43      var random = new MersenneTwister(31415);
[5549]44      var stopwatch = new Stopwatch();
45      stopwatch.Start();
[3338]46      for (int i = 0; i < POPULATION_SIZE; i++) {
[5686]47        randomTrees.Add(ProbabilisticTreeCreator.Create(random, grammar, MAX_TREE_LENGTH, MAX_TREE_DEPTH));
[3294]48      }
[5549]49      stopwatch.Stop();
[3294]50
[6949]51      int count = 0;
52      int depth = 0;
[3360]53      foreach (var tree in randomTrees) {
54        Util.IsValid(tree);
[6949]55        count += tree.Length;
56        depth += tree.Depth;
[3360]57      }
[5549]58      double msPerRandomTreeCreation = stopwatch.ElapsedMilliseconds / (double)POPULATION_SIZE;
59
[5367]60      Console.WriteLine("ProbabilisticTreeCreator: " + Environment.NewLine +
[5549]61        msPerRandomTreeCreation + " ms per random tree (~" + Math.Round(1000.0 / (msPerRandomTreeCreation)) + "random trees / s)" + Environment.NewLine +
[3338]62        Util.GetSizeDistributionString(randomTrees, 105, 5) + Environment.NewLine +
63        Util.GetFunctionDistributionString(randomTrees) + Environment.NewLine +
[5733]64        Util.GetNumberOfSubtreesDistributionString(randomTrees) + Environment.NewLine +
[6949]65        Util.GetTerminalDistributionString(randomTrees) + Environment.NewLine +
66        "Average tree depth: " + depth / POPULATION_SIZE + Environment.NewLine +
67        "Average tree length: " + count / POPULATION_SIZE + Environment.NewLine +
68        "Total nodes created: " + count + Environment.NewLine
[3338]69        );
[9322]70      //mkommend: commented due to performance issues on the builder
71      // Assert.IsTrue(Math.Round(1000.0 / (msPerRandomTreeCreation)) > 250); // must achieve more than 250 random trees / s
[3294]72    }
[6911]73
74    [TestMethod]
[9770]75    [TestCategory("Encodings.SymbolicExpressionTree")]
76    [TestProperty("Time", "short")]
[6911]77    public void ProbabilisticTreeCreatorSpecificTreeSizesTest() {
78      var trees = new List<ISymbolicExpressionTree>();
79      var grammar = Grammars.CreateSimpleArithmeticGrammar();
80      var random = new MersenneTwister(31415);
81      var treeGrammarType = SymbolicExpressionTreeGrammar_Accessor.ShadowedType.ReferencedType;
82
83
84      for (int targetTreeSize = 1; targetTreeSize <= 100; targetTreeSize++) {
85        var tree = new SymbolicExpressionTree();
86        var rootNode = (SymbolicExpressionTreeTopLevelNode)grammar.ProgramRootSymbol.CreateTreeNode();
87        rootNode.SetGrammar((ISymbolicExpressionTreeGrammar)Activator.CreateInstance(treeGrammarType, grammar));
88        if (rootNode.HasLocalParameters) rootNode.ResetLocalParameters(random);
89        var startNode = (SymbolicExpressionTreeTopLevelNode)grammar.StartSymbol.CreateTreeNode();
90        startNode.SetGrammar((ISymbolicExpressionTreeGrammar)Activator.CreateInstance(treeGrammarType, grammar));
91        if (startNode.HasLocalParameters) startNode.ResetLocalParameters(random);
92        rootNode.AddSubtree(startNode);
93
94        ProbabilisticTreeCreator_Accessor.TryCreateFullTreeFromSeed(random, startNode, targetTreeSize, ((int)Math.Log(targetTreeSize, 2)) + 1);
95        tree.Root = rootNode;
[9322]96        //mkommend: commented due to performance issues on the builder
97        // Assert.AreEqual(targetTreeSize + 2, tree.Length);  //the root and start node must be additionally added
[6911]98      }
99    }
[3294]100  }
101}
Note: See TracBrowser for help on using the repository browser.