Changeset 176
- Timestamp:
- 04/24/08 12:45:26 (17 years ago)
- Location:
- branches/3.0/sources/HeuristicLab.Constraints
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.0/sources/HeuristicLab.Constraints/VariableComparisonConstraint.cs
r2 r176 49 49 public override string Description { 50 50 get { 51 return @"Compares items in a ConstrainedItemList";51 return @"Compares variables in a ConstrainedItemList"; 52 52 } 53 53 } … … 70 70 if (left == null) throw new InvalidCastException("ERROR in VariableComparisonConstraint: Value of the variable on the left side needs to be of type IComparable"); 71 71 } else if (tmp != null && tmp.Name.Equals(rightVarName.Data)) { 72 right = tmp ;72 right = tmp.Value; 73 73 } 74 74 } -
branches/3.0/sources/HeuristicLab.Constraints/VariableComparisonConstraintView.Designer.cs
r2 r176 77 77 this.comparerGroupBox.Name = "comparerGroupBox"; 78 78 this.comparerGroupBox.Size = new System.Drawing.Size(141, 137); 79 this.comparerGroupBox.TabIndex = 1;79 this.comparerGroupBox.TabIndex = 4; 80 80 this.comparerGroupBox.TabStop = false; 81 81 this.comparerGroupBox.Text = "Comparer"; … … 142 142 this.label2.Name = "label2"; 143 143 this.label2.Size = new System.Drawing.Size(32, 13); 144 this.label2.TabIndex = 4;144 this.label2.TabIndex = 2; 145 145 this.label2.Text = "Right"; 146 146 // … … 152 152 this.rightVarNameStringDataView.Size = new System.Drawing.Size(100, 20); 153 153 this.rightVarNameStringDataView.StringData = null; 154 this.rightVarNameStringDataView.TabIndex = 5;154 this.rightVarNameStringDataView.TabIndex = 3; 155 155 // 156 156 // leftVarNameStringDataView … … 161 161 this.leftVarNameStringDataView.Size = new System.Drawing.Size(100, 20); 162 162 this.leftVarNameStringDataView.StringData = null; 163 this.leftVarNameStringDataView.TabIndex = 6;163 this.leftVarNameStringDataView.TabIndex = 1; 164 164 // 165 165 // VariableComparisonConstraintView
Note: See TracChangeset
for help on using the changeset viewer.