[3360] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[12009] | 3 | * Copyright (C) 2002-2015 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;
|
---|
[3297] | 23 | using System.Collections.Generic;
|
---|
[4068] | 24 | using HeuristicLab.Random;
|
---|
| 25 | using Microsoft.VisualStudio.TestTools.UnitTesting;
|
---|
[3297] | 26 |
|
---|
[9885] | 27 | namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Tests {
|
---|
[3297] | 28 | [TestClass]
|
---|
| 29 | public class SubroutineCreaterTest {
|
---|
[3360] | 30 | private const int POPULATION_SIZE = 1000;
|
---|
[5549] | 31 | private const int MAX_TREE_LENGTH = 100;
|
---|
| 32 | private const int MAX_TREE_DEPTH = 10;
|
---|
[3297] | 33 |
|
---|
[9885] | 34 | [TestMethod]
|
---|
| 35 | [TestCategory("Encodings.SymbolicExpressionTree")]
|
---|
| 36 | [TestProperty("Time", "long")]
|
---|
[3360] | 37 | public void SubroutineCreaterDistributionsTest() {
|
---|
[5549] | 38 | var trees = new List<ISymbolicExpressionTree>();
|
---|
[3360] | 39 | var grammar = Grammars.CreateArithmeticAndAdfGrammar();
|
---|
| 40 | var random = new MersenneTwister(31415);
|
---|
| 41 | for (int i = 0; i < POPULATION_SIZE; i++) {
|
---|
[5549] | 42 | ISymbolicExpressionTree tree = null;
|
---|
[5686] | 43 | tree = ProbabilisticTreeCreator.Create(random, grammar, MAX_TREE_LENGTH - 10, MAX_TREE_DEPTH);
|
---|
[5549] | 44 | var success = SubroutineCreater.CreateSubroutine(random, tree, MAX_TREE_LENGTH, MAX_TREE_DEPTH, 3, 3);
|
---|
[5367] | 45 | Assert.IsTrue(success);
|
---|
[3360] | 46 | Util.IsValid(tree);
|
---|
| 47 | trees.Add(tree);
|
---|
[3297] | 48 | }
|
---|
[5367] | 49 | Console.WriteLine("SubroutineCreator: " + Environment.NewLine +
|
---|
[3360] | 50 | Util.GetSizeDistributionString(trees, 105, 5) + Environment.NewLine +
|
---|
| 51 | Util.GetFunctionDistributionString(trees) + Environment.NewLine +
|
---|
[5733] | 52 | Util.GetNumberOfSubtreesDistributionString(trees) + Environment.NewLine +
|
---|
[3360] | 53 | Util.GetTerminalDistributionString(trees) + Environment.NewLine
|
---|
| 54 | );
|
---|
[3297] | 55 | }
|
---|
| 56 | }
|
---|
| 57 | }
|
---|