Changeset 11165
- Timestamp:
- 07/09/14 16:40:29 (10 years ago)
- Location:
- branches/HeuristicLab.EvolutionTracking
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking.Views/3.4/HeuristicLab.EvolutionTracking.Views-3.4.csproj
r11015 r11165 97 97 <DependentUpon>FrequentFragmentsDialog.cs</DependentUpon> 98 98 </Compile> 99 <Compile Include="GenealogyGraphChart.cs"> 100 <SubType>UserControl</SubType> 101 </Compile> 99 <Compile Include="GenealogyGraphChart.cs" /> 102 100 <Compile Include="GenealogyGraphChart.Designer.cs"> 103 101 <DependentUpon>GenealogyGraphChart.cs</DependentUpon> … … 105 103 <Compile Include="Plugin.cs" /> 106 104 <Compile Include="Properties\AssemblyInfo.cs" /> 107 <Compile Include="GenealogyGraphView.cs"> 108 <SubType>UserControl</SubType> 109 </Compile> 105 <Compile Include="GenealogyGraphView.cs" /> 110 106 <Compile Include="GenealogyGraphView.Designer.cs"> 111 107 <DependentUpon>GenealogyGraphView.cs</DependentUpon> -
branches/HeuristicLab.EvolutionTracking/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/HeuristicLab.Problems.DataAnalysis.Symbolic.Views-3.4.csproj
r11015 r11165 279 279 <DependentUpon>SymboldDataAnalysisGenealogyView.cs</DependentUpon> 280 280 </Compile> 281 <Compile Include="Tracking\SymbolicDataAnalysisExpressionGenealogyGraphChart.cs"> 282 <SubType>UserControl</SubType> 283 </Compile> 281 <Compile Include="Tracking\SymbolicDataAnalysisExpressionGenealogyGraphChart.cs" /> 284 282 <Compile Include="Tracking\SymbolicDataAnalysisExpressionGenealogyGraphChart.Designer.cs"> 285 283 <DependentUpon>SymbolicDataAnalysisExpressionGenealogyGraphChart.cs</DependentUpon> -
branches/HeuristicLab.EvolutionTracking/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/TreeDistance/BottomUpDistanceCalculator.cs
r11023 r11165 26 26 using System.Linq; 27 27 using System.Text; 28 using System.Text.RegularExpressions; 28 29 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding; 29 30 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views; … … 36 37 /// </summary> 37 38 public static class BottomUpDistanceCalculator { 39 /// <summary> 40 /// Creates a compact representation of the two trees as a directed acyclic graph 41 /// </summary> 42 /// <param name="t1">The first tree</param> 43 /// <param name="t2">The second tree</param> 44 /// <returns>The compacted DAG representing the two trees</returns> 38 45 private static Dictionary<ISymbolicExpressionTreeNode, IVertex> Compact(ISymbolicExpressionTree t1, ISymbolicExpressionTree t2) { 39 46 var G = new DirectedGraph(); … … 79 86 if (V.SequenceEqual(W)) { 80 87 K[v] = w; 88 // // merge vertices 89 // foreach (var a in K[v].InArcs) { 90 // a.Target = w; 91 // } 92 // G.RemoveVertex(K[v]); 93 81 94 found = true; 82 95 break; … … 148 161 var K = Compact(t1, t2); 149 162 var M = Mapping(t1, t2, K); 163 164 var keys = M.Keys.ToList(); 165 for (int j = 0; j < keys.Count; ++j) { 166 var key = keys[j]; 167 var value = M[key]; 168 if (key.Parent != null && value.Parent != null && !M.ContainsKey(key.Parent) && Label(key.Parent).Equals(Label(value.Parent))) { 169 M.Add(key.Parent, value.Parent); 170 keys.Add(key.Parent); 171 } 172 } 173 150 174 int d = t1.Length - M.Count; 151 175 int s = M.Count(x => !Label(x.Key).Equals(Label(x.Value))); … … 185 209 186 210 public IEnumerable<ISymbolicExpressionTreeNode> Nodes { 187 get { return Item1.Root.IterateNodesPostfix().Concat(Item2.Root.IterateNodesPostfix()); } 188 } 211 get { 212 var r1 = Item1.Root; 213 var r2 = Item2.Root; 214 215 var virtualRootSymbol = new StartSymbol(); 216 var virtualRootNode = virtualRootSymbol.CreateTreeNode(); 217 virtualRootNode.AddSubtree(r1); 218 virtualRootNode.AddSubtree(r2); 219 220 var nodes = virtualRootNode.IterateNodesPostfix().ToList(); 221 222 virtualRootNode.RemoveSubtree(0); 223 virtualRootNode.RemoveSubtree(0); 224 225 for (int i = 0; i < nodes.Count - 1; ++i) { yield return nodes[i]; } 226 } 227 } 228 } 229 230 public static string RemoveFirstLines(string text, int linesCount) { 231 var lines = Regex.Split(text, "\r\n|\r|\n").Skip(linesCount); 232 return string.Join(Environment.NewLine, lines.ToArray()); 189 233 } 190 234 … … 198 242 var m2 = formatter.Format(t2, out s2, 20); 199 243 244 // skip first 6 lines of s2 245 s2 = RemoveFirstLines(s2, 6); 246 200 247 sb.Append(s1); 201 248 sb.Append(s2);
Note: See TracChangeset
for help on using the changeset viewer.