Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Tests/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4/GrowTreeCreatorTest.cs @ 9770

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

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

File size: 3.3 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2013 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 System.Diagnostics;
25using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
26using HeuristicLab.Random;
27using Microsoft.VisualStudio.TestTools.UnitTesting;
28
29namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Tests {
30  [TestClass]
31  public class GrowTreeCreatorTest {
32    private const int POPULATION_SIZE = 10000;
33    private const int MAX_TREE_DEPTH = 10;
34    private const int MAX_TREE_LENGTH = 50;
35    private TestContext testContextInstance;
36
37    [TestMethod]
38    [TestCategory("Encodings.SymbolicExpressionTree")]
39    [TestProperty("Time", "long")]
40    public void GrowTreeCreatorDistributionsTest() {
41      var randomTrees = new List<ISymbolicExpressionTree>();
42      var grammar = Grammars.CreateSimpleArithmeticGrammar();
43      var random = new MersenneTwister(31415);
44      var stopwatch = new Stopwatch();
45      stopwatch.Start();
46      for (int i = 0; i != POPULATION_SIZE; i++) {
47        randomTrees.Add(GrowTreeCreator.Create(random, grammar, MAX_TREE_LENGTH, MAX_TREE_DEPTH));
48      }
49      stopwatch.Stop();
50
51      int count = 0;
52      int depth = 0;
53      int maxLength = 0;
54      foreach (var tree in randomTrees) {
55        Util.IsValid(tree);
56        if (maxLength < tree.Length)
57          maxLength = tree.Length;
58        count += tree.Length;
59        depth += tree.Depth;
60      }
61
62      double msPerRandomTreeCreation = stopwatch.ElapsedMilliseconds / (double)POPULATION_SIZE;
63
64      Console.WriteLine("GrowTreeCreator: " + Environment.NewLine +
65        msPerRandomTreeCreation + " ms per random tree (~" + Math.Round(1000.0 / (msPerRandomTreeCreation)) + "random trees / s)" + Environment.NewLine +
66        Util.GetSizeDistributionString(randomTrees, maxLength, 5) + Environment.NewLine +
67        Util.GetFunctionDistributionString(randomTrees) + Environment.NewLine +
68        Util.GetNumberOfSubtreesDistributionString(randomTrees) + Environment.NewLine +
69        Util.GetTerminalDistributionString(randomTrees) + Environment.NewLine +
70        "Average tree depth: " + depth / POPULATION_SIZE + Environment.NewLine +
71        "Average tree length: " + count / POPULATION_SIZE + Environment.NewLine +
72        "Total nodes created: " + count + Environment.NewLine
73        );
74      //mkommend: commented due to performance issues on the builder
75      //Assert.IsTrue(Math.Round(1000.0 / (msPerRandomTreeCreation)) > 300); // must achieve more than 300 random trees / s
76    }
77  }
78}
Note: See TracBrowser for help on using the repository browser.