Changeset 12406
- Timestamp:
- 05/27/15 18:08:41 (9 years ago)
- Location:
- branches/HeuristicLab.EvolutionTracking
- Files:
-
- 2 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.EvolutionTracking/HeuristicLab.EvolutionTracking.Views/3.4/HeuristicLab.EvolutionTracking.Views-3.4.csproj
r12208 r12406 97 97 </ItemGroup> 98 98 <ItemGroup> 99 <Compile Include="FrequentFragmentsDialog.cs">100 <SubType>Form</SubType>101 </Compile>102 <Compile Include="FrequentFragmentsDialog.Designer.cs">103 <DependentUpon>FrequentFragmentsDialog.cs</DependentUpon>104 </Compile>105 99 <Compile Include="GenealogyGraphChart.cs"> 106 100 <SubType>UserControl</SubType> -
branches/HeuristicLab.EvolutionTracking/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/Tracking/SymbolicDataAnalysisGenealogyGraphView.Designer.cs
r12208 r12406 56 56 this.nodeQualityLabel = new System.Windows.Forms.Label(); 57 57 this.nodeQualityLabelLabel = new System.Windows.Forms.Label(); 58 this.matchingModeButton = new System.Windows.Forms.CheckBox(); 58 59 ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit(); 59 60 this.splitContainer.Panel1.SuspendLayout(); … … 78 79 // groupBox1 79 80 // 81 this.groupBox1.Controls.Add(this.matchingModeButton); 80 82 this.groupBox1.Controls.Add(this.nodeWeightLabel); 81 83 this.groupBox1.Controls.Add(this.nodeWeightLabelLabel); … … 183 185 this.nodeQualityLabelLabel.Text = "Quality:"; 184 186 // 187 // matchingModeButton 188 // 189 this.matchingModeButton.AutoSize = true; 190 this.matchingModeButton.Checked = true; 191 this.matchingModeButton.CheckState = System.Windows.Forms.CheckState.Checked; 192 this.matchingModeButton.Location = new System.Drawing.Point(455, 18); 193 this.matchingModeButton.Name = "matchingModeButton"; 194 this.matchingModeButton.Size = new System.Drawing.Size(100, 17); 195 this.matchingModeButton.TabIndex = 9; 196 this.matchingModeButton.Text = "Exact Matching"; 197 this.matchingModeButton.UseVisualStyleBackColor = true; 198 // 185 199 // SymbolicDataAnalysisGenealogyGraphView 186 200 // … … 215 229 private System.Windows.Forms.Label nodeWeightLabelLabel; 216 230 private System.Windows.Forms.Label nodeWeightLabel; 231 private System.Windows.Forms.CheckBox matchingModeButton; 217 232 } 218 233 } -
branches/HeuristicLab.EvolutionTracking/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/Tracking/SymbolicDataAnalysisGenealogyGraphView.cs
r12283 r12406 183 183 // currently there is no possibility to specify the subtree matching criteria 184 184 var trees = Content.Vertices.Select(x => x.Data); 185 comparer.MatchVariableWeights = matchingModeButton.Checked; 186 comparer.MatchConstantValues = matchingModeButton.Checked; 185 187 var matchingTrees = trees.Where(x => x.Root.ContainsSubtree(node, comparer)); 186 188 … … 197 199 198 200 var trees = Content.Vertices.Select(x => x.Data); 201 comparer.MatchVariableWeights = matchingModeButton.Checked; 202 comparer.MatchConstantValues = matchingModeButton.Checked; 199 203 var matchingTrees = trees.Where(x => x.Root.ContainsSubtree(ClonedSubtree, comparer)); 200 204 -
branches/HeuristicLab.EvolutionTracking/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Analyzers/BuildingBlockAnalyzers/SymbolicDataAnalysisPoly10Analyzer.cs
r12318 r12406 169 169 if (table.Rows.ContainsKey(label)) { 170 170 var row = table.Rows[label]; 171 // scale previous values according to the new max172 // if (row.Values.Count > 0) {173 // var values = new List<double>(row.Values);174 // var m = values.Max();175 // row.Values.Replace(values.Select(x => x * m / max));176 // }177 171 row.Values.Add(max > 0 ? pair.Value / max : 0); 178 172 } -
branches/HeuristicLab.EvolutionTracking/HeuristicLab.Tracking.sln
r12017 r12406 186 186 HideSolutionNode = FALSE 187 187 EndGlobalSection 188 GlobalSection(Performance) = preSolution189 HasPerformanceSessions = true190 EndGlobalSection191 188 GlobalSection(TestCaseManagementSettings) = postSolution 192 189 CategoryFile = HeuristicLab.Tracking.vsmdi
Note: See TracChangeset
for help on using the changeset viewer.