- Timestamp:
- 07/07/19 23:45:15 (5 years ago)
- Location:
- stable
- Files:
-
- 1 deleted
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk merged: 16979-16980,16983
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.DataAnalysis.Symbolic
- Property svn:mergeinfo changed
/trunk/HeuristicLab.Problems.DataAnalysis.Symbolic merged: 16979-16980,16983
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Analyzers
-
Property
svn:ignore
set to
SymbolicDataAnalysisBuildingBlockAnalyzer.cs
SymbolicDataAnalysisHashBasedDiversityAnalyzer.cs
-
Property
svn:ignore
set to
-
stable/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Crossovers/SymbolicDataAnalysisExpressionDiversityPreservingCrossover.cs
r17097 r17099 1 using System; 1 #region License Information 2 /* HeuristicLab 3 * Copyright (C) 2002-2019 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; 2 23 using System.Collections.Generic; 3 24 using System.Linq; 4 25 using HEAL.Attic; 5 26 using HeuristicLab.Common; 6 27 using HeuristicLab.Core; … … 8 29 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding; 9 30 using HeuristicLab.Parameters; 10 using HEAL.Attic;11 31 using HeuristicLab.Random; 12 32 using static HeuristicLab.Problems.DataAnalysis.Symbolic.SymbolicExpressionHashExtensions; 13 33 14 34 namespace HeuristicLab.Problems.DataAnalysis.Symbolic { 15 [Item("DiversityCrossover", "Simple crossover operator pr ioritizing internal nodes according to the given probability.")]35 [Item("DiversityCrossover", "Simple crossover operator preventing swap between subtrees with the same hash value.")] 16 36 [StorableType("ED35B0D9-9704-4D32-B10B-8F9870E76781")] 17 37 public sealed class SymbolicDataAnalysisExpressionDiversityPreservingCrossover<T> : SymbolicDataAnalysisExpressionCrossover<T> where T : class, IDataAnalysisProblemData { … … 20 40 private const string WindowingParameterName = "Windowing"; 21 41 private const string ProportionalSamplingParameterName = "ProportionalSampling"; 42 private const string StrictHashingParameterName = "StrictHashing"; 22 43 23 44 private static readonly Func<byte[], ulong> hashFunction = HashUtil.JSHash; … … 35 56 get { return (IValueLookupParameter<BoolValue>)Parameters[ProportionalSamplingParameterName]; } 36 57 } 58 59 public IFixedValueParameter<BoolValue> StrictHashingParameter { 60 get { return (IFixedValueParameter<BoolValue>)Parameters[StrictHashingParameterName]; } 61 } 37 62 #endregion 38 63 … … 49 74 get { return ProportionalSamplingParameter.ActualValue; } 50 75 } 76 77 bool StrictHashing { 78 get { return StrictHashingParameter.Value.Value; } 79 } 51 80 #endregion 81 82 83 [StorableHook(HookType.AfterDeserialization)] 84 private void AfterDeserialization() { 85 if (!Parameters.ContainsKey(StrictHashingParameterName)) { 86 Parameters.Add(new FixedValueParameter<BoolValue>(StrictHashingParameterName, "Use strict hashing when calculating subtree hash values.")); 87 } 88 } 52 89 53 90 public SymbolicDataAnalysisExpressionDiversityPreservingCrossover() { … … 56 93 Parameters.Add(new ValueLookupParameter<BoolValue>(WindowingParameterName, "Use proportional sampling with windowing for cutpoint selection.", new BoolValue(false))); 57 94 Parameters.Add(new ValueLookupParameter<BoolValue>(ProportionalSamplingParameterName, "Select cutpoints proportionally using probabilities as weights instead of randomly.", new BoolValue(true))); 95 Parameters.Add(new FixedValueParameter<BoolValue>(StrictHashingParameterName, "Use strict hashing when calculating subtree hash values.")); 58 96 } 59 97 … … 72 110 } 73 111 74 public static ISymbolicExpressionTree Cross(IRandom random, ISymbolicExpressionTree parent0, ISymbolicExpressionTree parent1, double internalCrossoverPointProbability, int maxLength, int maxDepth, bool windowing, bool proportionalSampling = false) { 75 var leafCrossoverPointProbability = 1 - internalCrossoverPointProbability; 76 77 var nodes0 = ActualRoot(parent0).MakeNodes().Sort(hashFunction); 78 var nodes1 = ActualRoot(parent1).MakeNodes().Sort(hashFunction); 112 public static ISymbolicExpressionTree Cross(IRandom random, ISymbolicExpressionTree parent0, ISymbolicExpressionTree parent1, double internalCrossoverPointProbability, int maxLength, int maxDepth, bool windowing, bool proportionalSampling = false, bool strictHashing = false) { 113 var nodes0 = ActualRoot(parent0).MakeNodes(strictHashing).Sort(hashFunction); 114 var nodes1 = ActualRoot(parent1).MakeNodes(strictHashing).Sort(hashFunction); 79 115 80 116 IList<HashNode<ISymbolicExpressionTreeNode>> sampled0; … … 126 162 var proportionalSampling = ProportionalSampling.Value; 127 163 128 return Cross(random, parent0, parent1, internalCrossoverPointProbability, maxLength, maxDepth, windowing, proportionalSampling );164 return Cross(random, parent0, parent1, internalCrossoverPointProbability, maxLength, maxDepth, windowing, proportionalSampling, StrictHashing); 129 165 } 130 166 -
stable/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Hashing/HashExtensions.cs
r17097 r17099 21 21 22 22 using System; 23 using System. Collections.Generic;23 using System.Linq; 24 24 25 25 namespace HeuristicLab.Problems.DataAnalysis.Symbolic { … … 38 38 public SimplifyAction Simplify; 39 39 40 public IComparer<T> Comparer;40 //public IComparer<T> Comparer; 41 41 42 42 public bool IsLeaf => Arity == 0; 43 43 44 public HashNode(IComparer<T> comparer) {45 Comparer = comparer;46 }47 48 privateHashNode() { }44 //public HashNode(IComparer<T> comparer) { 45 // Comparer = comparer; 46 //} 47 48 //public HashNode() { } 49 49 50 50 public int CompareTo(HashNode<T> other) { 51 var res = Comparer.Compare(Data, other.Data); 52 return res == 0 ? CalculatedHashValue.CompareTo(other.CalculatedHashValue) : res; 51 return CalculatedHashValue.CompareTo(other.CalculatedHashValue); 53 52 } 54 53 … … 103 102 104 103 public static HashNode<T>[] Simplify<T>(this HashNode<T>[] nodes, Func<byte[], ulong> hashFunction) where T : class { 105 var reduced = nodes.UpdateNodeSizes().Reduce().Sort(hashFunction); 106 107 for (int i = 0; i < reduced.Length; ++i) { 108 var node = reduced[i]; 109 if (node.IsLeaf) { 110 continue; 111 } 112 node.Simplify?.Invoke(ref reduced, i); 113 } 114 // detect if anything was simplified 115 var count = 0; 116 foreach (var node in reduced) { 117 if (!node.Enabled) { ++count; } 118 } 119 if (count == 0) { 120 return reduced; 121 } 122 123 var simplified = new HashNode<T>[reduced.Length - count]; 124 int j = 0; 125 foreach (var node in reduced) { 126 if (node.Enabled) { 127 simplified[j++] = node; 128 } 129 } 130 return simplified.UpdateNodeSizes().Reduce().Sort(hashFunction); 104 bool simplified = false; 105 nodes = nodes.UpdateNodeSizes().Reduce().Sort(hashFunction); 106 do { 107 if (simplified) { 108 simplified = false; 109 nodes = nodes.Where(x => x.Enabled).ToArray().UpdateNodeSizes().Reduce().Sort(hashFunction); 110 } 111 112 for (int i = 0; i < nodes.Length; ++i) { 113 var node = nodes[i]; 114 if (node.IsLeaf) { 115 continue; 116 } 117 node.Simplify?.Invoke(ref nodes, i); 118 for (int j = i - node.Size; j < i; ++j) { 119 // detect if anything was simplified 120 if (!nodes[j].Enabled) { 121 simplified = true; 122 break; 123 } 124 } 125 } 126 } while (simplified); 127 return nodes.UpdateNodeSizes().Sort(hashFunction); 131 128 } 132 129 … … 207 204 } 208 205 209 p rivatestatic HashNode<T>[] Reduce<T>(this HashNode<T>[] nodes) where T : class {206 public static HashNode<T>[] Reduce<T>(this HashNode<T>[] nodes) where T : class { 210 207 int count = 0; 211 208 for (int i = 0; i < nodes.Length; ++i) { -
stable/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Hashing/SymbolicExpressionTreeHash.cs
r17090 r17099 38 38 private static readonly Constant constant = new Constant(); 39 39 40 private static readonly ISymbolicExpressionTreeNodeComparer comparer = new SymbolicExpressionTreeNodeComparer();41 40 private static ISymbolicExpressionTreeNode ActualRoot(this ISymbolicExpressionTree tree) => tree.Root.GetSubtree(0).GetSubtree(0); 42 41 … … 74 73 } 75 74 var hash = (ulong)name.GetHashCode(); 76 var hashNode = new HashNode<ISymbolicExpressionTreeNode> (comparer){75 var hashNode = new HashNode<ISymbolicExpressionTreeNode> { 77 76 Data = node, 78 77 Arity = node.SubtreeCount, -
stable/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/HeuristicLab.Problems.DataAnalysis.Symbolic-3.4.csproj
r17098 r17099 137 137 <ItemGroup> 138 138 <Compile Include="Analyzers\SymbolicDataAnalysisBottomUpDiversityAnalyzer.cs" /> 139 <Compile Include="Analyzers\SymbolicDataAnalysisBuildingBlockAnalyzer.cs" />140 139 <Compile Include="Analyzers\SymbolicDataAnalysisSingleObjectivePruningAnalyzer.cs" /> 141 140 <Compile Include="Analyzers\SymbolicDataAnalysisSingleObjectiveValidationParetoBestSolutionAnalyzer.cs" />
Note: See TracChangeset
for help on using the changeset viewer.