Free cookie consent management tool by TermsFeed Policy Generator

Changeset 176


Ignore:
Timestamp:
04/24/08 12:45:26 (16 years ago)
Author:
abeham
Message:

Merged fixes of #124 and #129 from trunk to release branch

Location:
branches/3.0/sources/HeuristicLab.Constraints
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/3.0/sources/HeuristicLab.Constraints/VariableComparisonConstraint.cs

    r2 r176  
    4949    public override string Description {
    5050      get {
    51         return @"Compares items in a ConstrainedItemList";
     51        return @"Compares variables in a ConstrainedItemList";
    5252      }
    5353    }
     
    7070          if (left == null) throw new InvalidCastException("ERROR in VariableComparisonConstraint: Value of the variable on the left side needs to be of type IComparable");
    7171        } else if (tmp != null && tmp.Name.Equals(rightVarName.Data)) {
    72           right = tmp;
     72          right = tmp.Value;
    7373        }
    7474      }
  • branches/3.0/sources/HeuristicLab.Constraints/VariableComparisonConstraintView.Designer.cs

    r2 r176  
    7777      this.comparerGroupBox.Name = "comparerGroupBox";
    7878      this.comparerGroupBox.Size = new System.Drawing.Size(141, 137);
    79       this.comparerGroupBox.TabIndex = 1;
     79      this.comparerGroupBox.TabIndex = 4;
    8080      this.comparerGroupBox.TabStop = false;
    8181      this.comparerGroupBox.Text = "Comparer";
     
    142142      this.label2.Name = "label2";
    143143      this.label2.Size = new System.Drawing.Size(32, 13);
    144       this.label2.TabIndex = 4;
     144      this.label2.TabIndex = 2;
    145145      this.label2.Text = "Right";
    146146      //
     
    152152      this.rightVarNameStringDataView.Size = new System.Drawing.Size(100, 20);
    153153      this.rightVarNameStringDataView.StringData = null;
    154       this.rightVarNameStringDataView.TabIndex = 5;
     154      this.rightVarNameStringDataView.TabIndex = 3;
    155155      //
    156156      // leftVarNameStringDataView
     
    161161      this.leftVarNameStringDataView.Size = new System.Drawing.Size(100, 20);
    162162      this.leftVarNameStringDataView.StringData = null;
    163       this.leftVarNameStringDataView.TabIndex = 6;
     163      this.leftVarNameStringDataView.TabIndex = 1;
    164164      //
    165165      // VariableComparisonConstraintView
Note: See TracChangeset for help on using the changeset viewer.