Changeset 175 for trunk/sources/HeuristicLab.Constraints
- Timestamp:
- 04/24/08 12:16:49 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Constraints/VariableComparisonConstraint.cs
r2 r175 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 }
Note: See TracChangeset
for help on using the changeset viewer.