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.Collections.Generic;
|
---|
23 | using System.Linq;
|
---|
24 | using HeuristicLab.Core;
|
---|
25 | using HeuristicLab.Data;
|
---|
26 | using HeuristicLab.Operators;
|
---|
27 | using HeuristicLab.Random;
|
---|
28 | using System;
|
---|
29 | using HeuristicLab.Functions;
|
---|
30 |
|
---|
31 | namespace HeuristicLab.StructureIdentification {
|
---|
32 | public class CutOutNodeManipulation : OperatorBase {
|
---|
33 | public override string Description {
|
---|
34 | get {
|
---|
35 | return @"Takes a tree, selects a random node of the tree and then tries to replace a random sub-tree
|
---|
36 | of that node with one of the childs of the selected child.
|
---|
37 |
|
---|
38 | O O
|
---|
39 | / \ / \
|
---|
40 | O X O 2
|
---|
41 | / \ 2 is selected => / \
|
---|
42 | 1 2 4 5
|
---|
43 | / / \
|
---|
44 | 3 4 5
|
---|
45 | ";
|
---|
46 | }
|
---|
47 | }
|
---|
48 |
|
---|
49 | public CutOutNodeManipulation()
|
---|
50 | : base() {
|
---|
51 | AddVariableInfo(new VariableInfo("Random", "Uniform random number generator", typeof(MersenneTwister), VariableKind.In));
|
---|
52 | AddVariableInfo(new VariableInfo("OperatorLibrary", "The operator library containing all available operators", typeof(GPOperatorLibrary), VariableKind.In));
|
---|
53 | AddVariableInfo(new VariableInfo("MaxTreeHeight", "The maximal allowed height of the tree", typeof(IntData), VariableKind.In));
|
---|
54 | AddVariableInfo(new VariableInfo("MaxTreeSize", "The maximal allowed size (number of nodes) of the tree", typeof(IntData), VariableKind.In));
|
---|
55 | AddVariableInfo(new VariableInfo("BalancedTreesRate", "Determines how many trees should be balanced", typeof(DoubleData), VariableKind.In));
|
---|
56 | AddVariableInfo(new VariableInfo("FunctionTree", "The tree to mutate", typeof(IFunctionTree), VariableKind.In | VariableKind.Out));
|
---|
57 | AddVariableInfo(new VariableInfo("TreeSize", "The size (number of nodes) of the tree", typeof(IntData), VariableKind.In | VariableKind.Out));
|
---|
58 | AddVariableInfo(new VariableInfo("TreeHeight", "The height of the tree", typeof(IntData), VariableKind.In | VariableKind.Out));
|
---|
59 | }
|
---|
60 |
|
---|
61 |
|
---|
62 | public override IOperation Apply(IScope scope) {
|
---|
63 | IFunctionTree root = GetVariableValue<IFunctionTree>("FunctionTree", scope, true);
|
---|
64 | MersenneTwister random = GetVariableValue<MersenneTwister>("Random", scope, true);
|
---|
65 | GPOperatorLibrary library = GetVariableValue<GPOperatorLibrary>("OperatorLibrary", scope, true);
|
---|
66 | int maxTreeHeight = GetVariableValue<IntData>("MaxTreeHeight", scope, true).Data;
|
---|
67 | int maxTreeSize = GetVariableValue<IntData>("MaxTreeSize", scope, true).Data;
|
---|
68 | double balancedTreesRate = GetVariableValue<DoubleData>("BalancedTreesRate", scope, true).Data;
|
---|
69 |
|
---|
70 | TreeGardener gardener = new TreeGardener(random, library);
|
---|
71 | IFunctionTree parent = gardener.GetRandomParentNode(root);
|
---|
72 | // parent == null means we should cut out the root node
|
---|
73 | // => return a random sub-tree of the root
|
---|
74 | if (parent == null) {
|
---|
75 | // when there are sub-trees then replace the old tree with a random sub-tree
|
---|
76 | if (root.SubTrees.Count > 0) {
|
---|
77 | root = root.SubTrees[random.Next(root.SubTrees.Count)];
|
---|
78 |
|
---|
79 | GetVariableValue<IntData>("TreeSize", scope, true).Data = gardener.GetTreeSize(root);
|
---|
80 | GetVariableValue<IntData>("TreeHeight", scope, true).Data = gardener.GetTreeHeight(root);
|
---|
81 |
|
---|
82 | // update the variable
|
---|
83 | scope.GetVariable(scope.TranslateName("FunctionTree")).Value = root;
|
---|
84 | if (!gardener.IsValidTree(root)) {
|
---|
85 | throw new InvalidProgramException();
|
---|
86 | }
|
---|
87 | // we reused a sub-tree so we don't have to schedule initialization operations
|
---|
88 | return null;
|
---|
89 | } else {
|
---|
90 | // we want to cut the root node and there are no sub-trees => create a new random terminal
|
---|
91 | IFunctionTree newTree;
|
---|
92 | newTree = gardener.CreateRandomTree(gardener.Terminals, 1, 1, false);
|
---|
93 | GetVariableValue<IntData>("TreeSize", scope, true).Data = gardener.GetTreeSize(newTree);
|
---|
94 | GetVariableValue<IntData>("TreeHeight", scope, true).Data = gardener.GetTreeHeight(newTree);
|
---|
95 | // update the variable
|
---|
96 | scope.GetVariable(scope.TranslateName("FunctionTree")).Value = newTree;
|
---|
97 | if (!gardener.IsValidTree(newTree)) {
|
---|
98 | throw new InvalidProgramException();
|
---|
99 | }
|
---|
100 | // schedule an operation to initialize the whole tree
|
---|
101 | return gardener.CreateInitializationOperation(gardener.GetAllSubTrees(newTree), scope);
|
---|
102 | }
|
---|
103 | }
|
---|
104 |
|
---|
105 | // select a child to cut away
|
---|
106 | int childIndex = random.Next(parent.SubTrees.Count);
|
---|
107 | IFunctionTree child = parent.SubTrees[childIndex];
|
---|
108 |
|
---|
109 | // match the sub-trees of the child with the allowed sub-trees of the parent
|
---|
110 | IList<IFunction> allowedFunctions = gardener.GetAllowedSubFunctions(parent.Function, childIndex);
|
---|
111 | IFunctionTree[] possibleChilds = child.SubTrees.Where(t => allowedFunctions.Contains(t.Function)).ToArray();
|
---|
112 |
|
---|
113 | if (possibleChilds.Length > 0) {
|
---|
114 | // replace child with a random child of that child
|
---|
115 | IFunctionTree selectedChild = possibleChilds[random.Next(possibleChilds.Length)];
|
---|
116 | parent.RemoveSubTree(childIndex);
|
---|
117 | parent.InsertSubTree(childIndex, selectedChild);
|
---|
118 |
|
---|
119 | if (!gardener.IsValidTree(root)) {
|
---|
120 | throw new InvalidProgramException();
|
---|
121 | }
|
---|
122 |
|
---|
123 | // update the size and height of our tree
|
---|
124 | GetVariableValue<IntData>("TreeSize", scope, true).Data = gardener.GetTreeSize(root);
|
---|
125 | GetVariableValue<IntData>("TreeHeight", scope, true).Data = gardener.GetTreeHeight(root);
|
---|
126 | // don't need to schedule initialization operations
|
---|
127 | return null;
|
---|
128 | } else {
|
---|
129 | // can't reuse an existing branch => create a new tree
|
---|
130 | // determine the level of the parent
|
---|
131 | int parentLevel = gardener.GetBranchLevel(root, parent);
|
---|
132 |
|
---|
133 | // first remove the old child (first step essential!)
|
---|
134 | parent.RemoveSubTree(childIndex);
|
---|
135 | // then determine the number of nodes left over after the child has been removed!
|
---|
136 | int remainingNodes = gardener.GetTreeSize(root);
|
---|
137 |
|
---|
138 | allowedFunctions = gardener.GetAllowedSubFunctions(parent.Function, childIndex);
|
---|
139 | IFunctionTree newFunctionTree = gardener.CreateRandomTree(allowedFunctions, maxTreeSize - remainingNodes, maxTreeHeight - parentLevel, false);
|
---|
140 |
|
---|
141 | parent.InsertSubTree(childIndex, newFunctionTree);
|
---|
142 |
|
---|
143 | GetVariableValue<IntData>("TreeSize", scope, true).Data = gardener.GetTreeSize(root);
|
---|
144 | GetVariableValue<IntData>("TreeHeight", scope, true).Data = gardener.GetTreeHeight(root);
|
---|
145 |
|
---|
146 | if (!gardener.IsValidTree(root)) {
|
---|
147 | throw new InvalidProgramException();
|
---|
148 | }
|
---|
149 |
|
---|
150 | // schedule an initialization operation for the new function-tree
|
---|
151 | return gardener.CreateInitializationOperation(gardener.GetAllSubTrees(newFunctionTree), scope);
|
---|
152 | }
|
---|
153 | }
|
---|
154 | }
|
---|
155 | }
|
---|