[4189] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[17180] | 3 | * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[4189] | 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;
|
---|
| 23 | using System.Collections.Generic;
|
---|
| 24 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
|
---|
| 25 | using HeuristicLab.Random;
|
---|
| 26 | using Microsoft.VisualStudio.TestTools.UnitTesting;
|
---|
| 27 |
|
---|
[9764] | 28 | namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Tests {
|
---|
[4189] | 29 | [TestClass]
|
---|
| 30 | public class ChangeNodeTypeManipulationTest {
|
---|
| 31 | private const int POPULATION_SIZE = 1000;
|
---|
[5549] | 32 | private const int MAX_TREE_LENGTH = 100;
|
---|
| 33 | private const int MAX_TREE_DEPTH = 10;
|
---|
[4189] | 34 |
|
---|
[9770] | 35 | [TestMethod]
|
---|
| 36 | [TestCategory("Encodings.SymbolicExpressionTree")]
|
---|
| 37 | [TestProperty("Time", "medium")]
|
---|
[4189] | 38 | public void ChangeNodeTypeManipulationDistributionsTest() {
|
---|
[5549] | 39 | SymbolicExpressionTreeStringFormatter formatter = new SymbolicExpressionTreeStringFormatter();
|
---|
| 40 | var trees = new List<ISymbolicExpressionTree>();
|
---|
[4189] | 41 | var grammar = Grammars.CreateArithmeticAndAdfGrammar();
|
---|
[5367] | 42 | var random = new MersenneTwister(31415);
|
---|
[5567] | 43 | int failedEvents = 0;
|
---|
[4189] | 44 | for (int i = 0; i < POPULATION_SIZE; i++) {
|
---|
[5686] | 45 | var tree = ProbabilisticTreeCreator.Create(random, grammar, MAX_TREE_LENGTH, MAX_TREE_DEPTH);
|
---|
[5549] | 46 | string originalTree = formatter.Format(tree);
|
---|
| 47 | ChangeNodeTypeManipulation.ChangeNodeType(random, tree);
|
---|
| 48 | string manipulatedTree = formatter.Format(tree);
|
---|
[5567] | 49 | if (originalTree == manipulatedTree) failedEvents++;
|
---|
[4189] | 50 | Util.IsValid(tree);
|
---|
| 51 | trees.Add(tree);
|
---|
| 52 | }
|
---|
[5367] | 53 | Console.WriteLine("ChangeNodeTypeManipulation: " + Environment.NewLine +
|
---|
[5567] | 54 | "Failed events: " + failedEvents * 100.0 / POPULATION_SIZE + " %" + Environment.NewLine +
|
---|
[4189] | 55 | Util.GetSizeDistributionString(trees, 105, 5) + Environment.NewLine +
|
---|
| 56 | Util.GetFunctionDistributionString(trees) + Environment.NewLine +
|
---|
[5733] | 57 | Util.GetNumberOfSubtreesDistributionString(trees) + Environment.NewLine +
|
---|
[4189] | 58 | Util.GetTerminalDistributionString(trees) + Environment.NewLine
|
---|
| 59 | );
|
---|
[5567] | 60 | Assert.IsTrue(failedEvents * 100.0 / POPULATION_SIZE < 5.0); // only max 5% failed mutations are allowed
|
---|
[4189] | 61 | }
|
---|
| 62 | }
|
---|
| 63 | }
|
---|