Changeset 12406 for branches/HeuristicLab.EvolutionTracking/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/Tracking
- Timestamp:
- 05/27/15 18:08:41 (10 years ago)
- Location:
- branches/HeuristicLab.EvolutionTracking/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/Tracking
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
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
Note: See TracChangeset
for help on using the changeset viewer.