[3360] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[5445] | 3 | * Copyright (C) 2002-2011 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 |
|
---|
| 22 | using System;
|
---|
[3294] | 23 | using System.Collections.Generic;
|
---|
| 24 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
|
---|
[4068] | 25 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Creators;
|
---|
[3294] | 26 | using HeuristicLab.Random;
|
---|
[4068] | 27 | using Microsoft.VisualStudio.TestTools.UnitTesting;
|
---|
[3294] | 28 |
|
---|
| 29 | namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding_3._3.Tests {
|
---|
| 30 | [TestClass]
|
---|
| 31 | public class ProbabilisticTreeCreaterTest {
|
---|
[3338] | 32 | private const int POPULATION_SIZE = 1000;
|
---|
| 33 | private const int MAX_TREE_SIZE = 100;
|
---|
| 34 | private const int MAX_TREE_HEIGHT = 10;
|
---|
[3294] | 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()]
|
---|
[3338] | 51 | public void ProbabilisticTreeCreaterDistributionsTest() {
|
---|
| 52 | var randomTrees = new List<SymbolicExpressionTree>();
|
---|
| 53 | var grammar = Grammars.CreateSimpleArithmeticGrammar();
|
---|
[3369] | 54 | var random = new MersenneTwister(31415);
|
---|
[3338] | 55 | for (int i = 0; i < POPULATION_SIZE; i++) {
|
---|
| 56 | randomTrees.Add(ProbabilisticTreeCreator.Create(random, grammar, MAX_TREE_SIZE, MAX_TREE_HEIGHT, 0, 0));
|
---|
[3294] | 57 | }
|
---|
| 58 |
|
---|
[3360] | 59 | foreach (var tree in randomTrees) {
|
---|
| 60 | Util.IsValid(tree);
|
---|
| 61 | }
|
---|
[5367] | 62 | Console.WriteLine("ProbabilisticTreeCreator: " + Environment.NewLine +
|
---|
[3338] | 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 | );
|
---|
[3294] | 68 | }
|
---|
| 69 |
|
---|
| 70 |
|
---|
| 71 | [TestMethod()]
|
---|
[3338] | 72 | public void ProbabilisticTreeCreaterWithAdfDistributionsTest() {
|
---|
| 73 | var randomTrees = new List<SymbolicExpressionTree>();
|
---|
| 74 | var grammar = Grammars.CreateArithmeticAndAdfGrammar();
|
---|
[3369] | 75 | var random = new MersenneTwister(31415);
|
---|
[3338] | 76 | for (int i = 0; i < POPULATION_SIZE; i++) {
|
---|
[3360] | 77 | var tree = ProbabilisticTreeCreator.Create(random, grammar, MAX_TREE_SIZE, MAX_TREE_HEIGHT, 3, 3);
|
---|
| 78 | Util.IsValid(tree);
|
---|
| 79 | randomTrees.Add(tree);
|
---|
[3294] | 80 | }
|
---|
[5367] | 81 | Console.WriteLine("ProbabilisticTreeCreator: " + Environment.NewLine +
|
---|
[3338] | 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 | );
|
---|
[3294] | 87 | }
|
---|
| 88 | }
|
---|
| 89 | }
|
---|