[2] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2008 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 |
|
---|
| 22 | using System;
|
---|
| 23 | using System.Collections.Generic;
|
---|
| 24 | using System.Linq;
|
---|
| 25 | using HeuristicLab.Core;
|
---|
| 26 | using HeuristicLab.Data;
|
---|
| 27 | using HeuristicLab.Operators;
|
---|
| 28 | using HeuristicLab.Random;
|
---|
[155] | 29 | using HeuristicLab.Functions;
|
---|
[238] | 30 | using System.Diagnostics;
|
---|
[2] | 31 |
|
---|
| 32 | namespace HeuristicLab.StructureIdentification {
|
---|
| 33 | public class SubstituteSubTreeManipulation : OperatorBase {
|
---|
| 34 |
|
---|
| 35 | public override string Description {
|
---|
| 36 | get { return "Selects a random node of the tree and replaces it with randomly initialized subtree."; }
|
---|
| 37 | }
|
---|
| 38 |
|
---|
| 39 | public SubstituteSubTreeManipulation()
|
---|
| 40 | : base() {
|
---|
| 41 | AddVariableInfo(new VariableInfo("Random", "Uniform random number generator", typeof(MersenneTwister), VariableKind.In));
|
---|
| 42 | AddVariableInfo(new VariableInfo("OperatorLibrary", "The operator library containing all available operators", typeof(GPOperatorLibrary), VariableKind.In));
|
---|
| 43 | AddVariableInfo(new VariableInfo("MaxTreeHeight", "The maximal allowed height of the tree", typeof(IntData), VariableKind.In));
|
---|
| 44 | AddVariableInfo(new VariableInfo("MaxTreeSize", "The maximal allowed size (number of nodes) of the tree", typeof(IntData), VariableKind.In));
|
---|
[155] | 45 | AddVariableInfo(new VariableInfo("FunctionTree", "The tree to manipulate", typeof(IFunctionTree), VariableKind.In | VariableKind.Out));
|
---|
| 46 | AddVariableInfo(new VariableInfo("TreeSize", "The size (number of nodes) of the tree", typeof(IntData), VariableKind.In | VariableKind.Out));
|
---|
| 47 | AddVariableInfo(new VariableInfo("TreeHeight", "The height of the tree", typeof(IntData), VariableKind.In | VariableKind.Out));
|
---|
[2] | 48 | }
|
---|
| 49 |
|
---|
| 50 | public override IOperation Apply(IScope scope) {
|
---|
[155] | 51 | IFunctionTree root = GetVariableValue<IFunctionTree>("FunctionTree", scope, true);
|
---|
[2] | 52 | MersenneTwister random = GetVariableValue<MersenneTwister>("Random", scope, true);
|
---|
| 53 | GPOperatorLibrary library = GetVariableValue<GPOperatorLibrary>("OperatorLibrary", scope, true);
|
---|
| 54 | int maxTreeHeight = GetVariableValue<IntData>("MaxTreeHeight", scope, true).Data;
|
---|
| 55 | int maxTreeSize = GetVariableValue<IntData>("MaxTreeSize", scope, true).Data;
|
---|
| 56 | int treeSize = GetVariableValue<IntData>("TreeSize", scope, true).Data;
|
---|
| 57 | int treeHeight = GetVariableValue<IntData>("TreeHeight", scope, true).Data;
|
---|
| 58 | TreeGardener gardener = new TreeGardener(random, library);
|
---|
[155] | 59 | IFunctionTree parent = gardener.GetRandomParentNode(root);
|
---|
[2] | 60 | if(parent == null) {
|
---|
| 61 | // parent == null means we should subsitute the whole tree
|
---|
| 62 | // => create a new random tree
|
---|
[163] | 63 | IFunctionTree newTree = gardener.CreateRandomTree(gardener.AllFunctions, maxTreeSize, maxTreeHeight);
|
---|
[238] | 64 | Debug.Assert(gardener.IsValidTree(newTree));
|
---|
[2] | 65 |
|
---|
| 66 | // update the variables in the scope with the new values
|
---|
[155] | 67 | GetVariableValue<IntData>("TreeSize", scope, true).Data = gardener.GetTreeSize(newTree);
|
---|
| 68 | GetVariableValue<IntData>("TreeHeight", scope, true).Data = gardener.GetTreeHeight(newTree);
|
---|
| 69 | scope.GetVariable(scope.TranslateName("FunctionTree")).Value = newTree;
|
---|
[2] | 70 |
|
---|
[155] | 71 | // return a CompositeOperation that randomly initializes the new tree
|
---|
| 72 | return gardener.CreateInitializationOperation(gardener.GetAllSubTrees(newTree), scope);
|
---|
[2] | 73 | } else {
|
---|
| 74 | // determine a random child of the parent to be replaced
|
---|
[155] | 75 | int childIndex = random.Next(parent.SubTrees.Count);
|
---|
| 76 | // get the list of allowed functions for the new sub-tree
|
---|
| 77 | ICollection<IFunction> allowedFunctions = gardener.GetAllowedSubFunctions(parent.Function, childIndex);
|
---|
| 78 | if(allowedFunctions.Count == 0) {
|
---|
[2] | 79 | // don't change anything
|
---|
| 80 | // this shouldn't happen
|
---|
| 81 | throw new InvalidProgramException();
|
---|
| 82 | }
|
---|
| 83 |
|
---|
| 84 | // calculate the maximum size and height of the new sub-tree based on the location where
|
---|
| 85 | // it will be inserted
|
---|
[155] | 86 | int parentLevel = gardener.GetBranchLevel(root, parent);
|
---|
[2] | 87 | int maxSubTreeHeight = maxTreeHeight - parentLevel;
|
---|
[155] | 88 | int maxSubTreeSize = maxTreeSize - (treeSize - gardener.GetTreeSize(parent.SubTrees[childIndex]));
|
---|
[2] | 89 |
|
---|
[155] | 90 | // create a random function tree
|
---|
[163] | 91 | IFunctionTree newTree = gardener.CreateRandomTree(allowedFunctions, maxSubTreeSize, maxSubTreeHeight);
|
---|
[155] | 92 | parent.RemoveSubTree(childIndex);
|
---|
| 93 | parent.InsertSubTree(childIndex, newTree);
|
---|
[2] | 94 |
|
---|
[238] | 95 | Debug.Assert(gardener.IsValidTree(root));
|
---|
[2] | 96 | // update the values of treeSize and treeHeight
|
---|
[155] | 97 | GetVariableValue<IntData>("TreeSize", scope, true).Data = gardener.GetTreeSize(root);
|
---|
| 98 | GetVariableValue<IntData>("TreeHeight", scope, true).Data = gardener.GetTreeHeight(root);
|
---|
| 99 | // the root hasn't changed so we don't need to update
|
---|
[2] | 100 | // return a CompositeOperation that randomly initializes all nodes of the new subtree
|
---|
[155] | 101 | return gardener.CreateInitializationOperation(gardener.GetAllSubTrees(newTree), scope);
|
---|
[2] | 102 | }
|
---|
| 103 | }
|
---|
| 104 | }
|
---|
| 105 | }
|
---|