[3360] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[7259] | 3 | * Copyright (C) 2002-2012 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;
|
---|
[5686] | 23 | using System.Collections.Generic;
|
---|
[5367] | 24 | using System.Linq;
|
---|
[3338] | 25 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
|
---|
[4068] | 26 | using HeuristicLab.Random;
|
---|
| 27 | using Microsoft.VisualStudio.TestTools.UnitTesting;
|
---|
[3338] | 28 |
|
---|
[5549] | 29 | namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding_3._4.Tests {
|
---|
[3338] | 30 | [TestClass]
|
---|
| 31 | public class ArgumentCreaterTest {
|
---|
| 32 | private const int POPULATION_SIZE = 1000;
|
---|
[5549] | 33 | private const int MAX_TREE_LENGTH = 100;
|
---|
| 34 | private const int MAX_TREE_DEPTH = 10;
|
---|
[3338] | 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 ArgumentCreaterDistributionsTest() {
|
---|
[5549] | 52 | var trees = new List<ISymbolicExpressionTree>();
|
---|
[3338] | 53 | var grammar = Grammars.CreateArithmeticAndAdfGrammar();
|
---|
[3360] | 54 | var random = new MersenneTwister(31415);
|
---|
[5411] | 55 | int failedOps = 0;
|
---|
[3338] | 56 | for (int i = 0; i < POPULATION_SIZE; i++) {
|
---|
[5549] | 57 | ISymbolicExpressionTree tree;
|
---|
[5367] | 58 | do {
|
---|
[5686] | 59 | tree = ProbabilisticTreeCreator.Create(random, grammar, MAX_TREE_LENGTH, MAX_TREE_DEPTH);
|
---|
| 60 | SubroutineCreater.CreateSubroutine(random, tree, MAX_TREE_LENGTH, MAX_TREE_DEPTH, 3, 3);
|
---|
[5367] | 61 | } while (!TreeHasAdfWithParameter(tree, 3));
|
---|
[5549] | 62 | var success = ArgumentCreater.CreateNewArgument(random, tree, 60000, 100, 3, 3);
|
---|
[5411] | 63 | if (!success) failedOps++;
|
---|
[3360] | 64 | Util.IsValid(tree);
|
---|
[3338] | 65 | trees.Add(tree);
|
---|
| 66 | }
|
---|
[5411] | 67 | // difficult to make sure that create argument operations succeed because trees are macro-expanded can potentially become very big
|
---|
| 68 | // => just test if only a small proportion fails
|
---|
[5895] | 69 | Assert.IsTrue(failedOps < POPULATION_SIZE * 0.05); // only 5% may fail
|
---|
[5367] | 70 | Console.WriteLine("ArgumentCreator: " + Environment.NewLine +
|
---|
[5411] | 71 | "Failed operations: " + failedOps * 100.0 / POPULATION_SIZE + " %" + Environment.NewLine +
|
---|
[3360] | 72 | Util.GetSizeDistributionString(trees, 200, 20) + Environment.NewLine +
|
---|
[3338] | 73 | Util.GetFunctionDistributionString(trees) + Environment.NewLine +
|
---|
[5733] | 74 | Util.GetNumberOfSubtreesDistributionString(trees) + Environment.NewLine +
|
---|
[3338] | 75 | Util.GetTerminalDistributionString(trees) + Environment.NewLine
|
---|
| 76 | );
|
---|
| 77 | }
|
---|
[5367] | 78 |
|
---|
[5549] | 79 | private bool TreeHasAdfWithParameter(ISymbolicExpressionTree tree, int maxParameters) {
|
---|
[5733] | 80 | if (tree.Root.Subtrees.Count() != 2) return false;
|
---|
| 81 | var firstAdf = tree.Root.GetSubtree(1);
|
---|
[5686] | 82 | return firstAdf.Grammar.GetAllowedChildSymbols(firstAdf.Symbol, 0).Where(x => x is Argument).Count() < maxParameters;
|
---|
[5367] | 83 | }
|
---|
[3338] | 84 | }
|
---|
| 85 | }
|
---|