Changeset 7497 for branches/HeuristicLab.Crossovers/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Crossovers
- Timestamp:
- 02/21/12 11:08:58 (13 years ago)
- Location:
- branches/HeuristicLab.Crossovers/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Crossovers
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Crossovers/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Crossovers/MultiSymbolicDataAnalysisExpressionCrossover.cs
r7489 r7497 108 108 Operators = checkedItemList; 109 109 Operators_ItemsAdded(this, new CollectionItemsChangedEventArgs<IndexedItem<ISymbolicExpressionTreeCrossover>>(Operators.CheckedItems)); 110 Name = "MultiSymbolicDataAnalysisExpressionCrossover"; 110 111 } 111 112 -
branches/HeuristicLab.Crossovers/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Crossovers/SymbolicDataAnalysisExpressionDepthConstrainedCrossover.cs
r7490 r7497 32 32 namespace HeuristicLab.Problems.DataAnalysis.Symbolic { 33 33 34 [Item("DepthConstrainedCrossover", "An operator which performs subtree swapping within a specific depth range.")] 34 [Item("DepthConstrainedCrossover", "An operator which performs subtree swapping within a specific depth range. The range parameter controls the crossover behavior:\n" + 35 "- HighLevel (upper 25% of the tree)\n" + 36 "- Standard (mid 50% of the tree)\n" + 37 "- LowLevel (lower 25% of the tree)")] 35 38 public sealed class SymbolicDataAnalysisExpressionDepthConstrainedCrossover<T> : 36 39 SymbolicDataAnalysisExpressionCrossover<T> where T : class, IDataAnalysisProblemData { … … 60 63 DepthRangeParameter.ValidValues.Add(new StringValue(Enum.GetName(typeof(Ranges), Ranges.Standard)).AsReadOnly()); 61 64 DepthRangeParameter.ValidValues.Add(new StringValue(Enum.GetName(typeof(Ranges), Ranges.LowLevel)).AsReadOnly()); 65 Name = "DepthConstrainedCrossover"; 62 66 } 63 67 public override IDeepCloneable Clone(Cloner cloner) { return new SymbolicDataAnalysisExpressionDepthConstrainedCrossover<T>(this, cloner); } … … 83 87 /// <returns></returns> 84 88 public static ISymbolicExpressionTree Cross(IRandom random, ISymbolicExpressionTree parent0, ISymbolicExpressionTree parent1, int maxDepth, int maxLength, string mode) { 85 int depth = parent0.Root.GetDepth() - 1; // sub tract 1 because the tree levels are counted from 089 int depth = parent0.Root.GetDepth() - 1; // substract 1 because the tree levels are counted from 0 86 90 var depthRange = new IntRange(); 87 91 const int depthOffset = 2; // skip the first 2 levels (root + startNode) … … 118 122 119 123 var allowedBranches = (from s in GetNodesAtDepth(parent1, depthRange) 120 where 121 crossoverPoint0.IsMatchingPointType(s) && 122 s.GetDepth() + level <= maxDepth && 123 s.GetLength() + length <= maxLength 124 where s.GetDepth() + level <= maxDepth 125 where s.GetLength() + length <= maxLength 126 where crossoverPoint0.IsMatchingPointType(s) 124 127 select s).ToList(); 125 128 if (allowedBranches.Count == 0) return parent0; 126 129 var selectedBranch = allowedBranches.SelectRandom(random); 127 swap(crossoverPoint0, selectedBranch);130 Swap(crossoverPoint0, selectedBranch); 128 131 return parent0; 129 132 } … … 136 139 where depth <= depthRange.End 137 140 select node; 138 139 //var list = new List<Tuple<ISymbolicExpressionTreeNode, int>> { new Tuple<ISymbolicExpressionTreeNode, int>(root, 0) };140 //int offset = 0;141 //int level = 0;142 //while (level < range.End) {143 // ++level;144 // int count = list.Count;145 // for (int i = offset; i != count; ++i) {146 // if (list[i].Item1.Subtrees.Any())147 // list.AddRange(from s in list[i].Item1.Subtrees select new Tuple<ISymbolicExpressionTreeNode, int>(s, level));148 // }149 // offset = count;150 //}151 //// taking advantage of the fact that the list is already sorted by level152 //for (int i = list.Count - 1; i >= 0; --i) {153 // if (list[i].Item2 >= range.Start)154 // yield return list[i].Item1;155 // else break;156 //}157 }158 159 private static void swap(CutPoint crossoverPoint, ISymbolicExpressionTreeNode selectedBranch) {160 // perform the actual swap161 if (crossoverPoint.Child != null) {162 // manipulate the tree of parent0 in place163 // replace the branch in tree0 with the selected branch from tree1164 crossoverPoint.Parent.RemoveSubtree(crossoverPoint.ChildIndex);165 if (selectedBranch != null) {166 crossoverPoint.Parent.InsertSubtree(crossoverPoint.ChildIndex, selectedBranch);167 }168 } else {169 // child is null (additional child should be added under the parent)170 if (selectedBranch != null) {171 crossoverPoint.Parent.AddSubtree(selectedBranch);172 }173 }174 141 } 175 142 } -
branches/HeuristicLab.Crossovers/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Crossovers/SymbolicDataAnalysisExpressionDeterministicBestCrossover.cs
r7481 r7497 30 30 namespace HeuristicLab.Problems.DataAnalysis.Symbolic { 31 31 32 [Item("DeterministicBestCrossover", "An operator which performs subtree swapping in a deterministic way, by choosing the best subtree to be swapped in a certain position.")] 32 [Item("DeterministicBestCrossover", "An operator which performs subtree swapping by choosing the best subtree to be swapped in a certain position:\n" + 33 "- Take two parent individuals P0 and P1\n" + 34 "- Randomly choose a crossover point C from P0\n" + 35 "- Test all nodes from P1 to determine the one that produces the best child when inserted at place C in P0")] 33 36 public sealed class SymbolicDataAnalysisExpressionDeterministicBestCrossover<T> : SymbolicDataAnalysisExpressionCrossover<T> where T : class, IDataAnalysisProblemData { 34 37 [StorableConstructor] … … 62 65 var crossoverPoints0 = new List<CutPoint>(); 63 66 parent0.Root.ForEachNodePostfix((n) => { 64 if (n. Subtrees.Any() && n!= parent0.Root)65 crossoverPoints0.Add Range(from s in n.Subtrees select new CutPoint(n, s));67 if (n.Parent != null && n.Parent != parent0.Root) 68 crossoverPoints0.Add(new CutPoint(n.Parent, n)); 66 69 }); 67 70 CutPoint crossoverPoint0 = crossoverPoints0.SelectRandom(random); … … 71 74 var allowedBranches = new List<ISymbolicExpressionTreeNode>(); 72 75 parent1.Root.ForEachNodePostfix((n) => { 73 if (n. Subtrees.Any() && n != parent1.Root)74 allowedBranches.AddRange(from s in n.Subtrees75 where crossoverPoint0.IsMatchingPointType(s) && s.GetDepth() + level <= maxDepth && s.GetLength() + length <= maxLength76 select s);76 if (n.Parent != null && n.Parent != parent1.Root) { 77 if (n.GetDepth() + level <= maxDepth && n.GetLength() + length <= maxLength && crossoverPoint0.IsMatchingPointType(n)) 78 allowedBranches.Add(n); 79 } 77 80 }); 78 81 … … 89 92 foreach (var node in allowedBranches) { 90 93 var parent = node.Parent; 91 swap(crossoverPoint0, node); // the swap will set the nodes parent to crossoverPoint0.Parent94 Swap(crossoverPoint0, node); // the swap will set the nodes parent to crossoverPoint0.Parent 92 95 double quality = evaluator.Evaluate(context, parent0, problemData, rows); 93 swap(crossoverPoint0, originalChild); // swap the child back (so that the next swap will not affect the currently swapped node from parent1)96 Swap(crossoverPoint0, originalChild); // swap the child back (so that the next swap will not affect the currently swapped node from parent1) 94 97 nodeQualities.Add(new Tuple<ISymbolicExpressionTreeNode, double>(node, quality)); 95 98 node.Parent = parent; // restore correct parent … … 108 111 109 112 // swap the node that would create the best offspring 110 swap(crossoverPoint0, selectedBranch); 111 113 Swap(crossoverPoint0, selectedBranch); 112 114 return parent0; 113 }114 115 private static void swap(CutPoint crossoverPoint, ISymbolicExpressionTreeNode selectedBranch) {116 if (crossoverPoint.Child != null) {117 // manipulate the tree of parent0 in place118 // replace the branch in tree0 with the selected branch from tree1119 crossoverPoint.Parent.RemoveSubtree(crossoverPoint.ChildIndex);120 if (selectedBranch != null) {121 crossoverPoint.Parent.InsertSubtree(crossoverPoint.ChildIndex, selectedBranch);122 }123 } else {124 // child is null (additional child should be added under the parent)125 if (selectedBranch != null) {126 crossoverPoint.Parent.AddSubtree(selectedBranch);127 }128 }129 115 } 130 116 }
Note: See TracChangeset
for help on using the changeset viewer.