Changeset 2831
- Timestamp:
- 02/19/10 02:18:27 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Operators/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Operators/3.3/Comparator.cs
r2794 r2831 75 75 b = i == 0; break; 76 76 case HeuristicLab.Data.Comparison.GreaterOrEqual: 77 b = i >= 0; break; 78 case HeuristicLab.Data.Comparison.Greater: 77 79 b = i > 0; break; 78 case HeuristicLab.Data.Comparison.Greater:79 b = i >= 0; break;80 80 case HeuristicLab.Data.Comparison.NotEqual: 81 81 b = i != 0; break; -
trunk/sources/HeuristicLab.Operators/3.3/ValuesCollector.cs
r2794 r2831 61 61 } 62 62 #region NOTE 63 // NOTE: The ItemsReplaced event has notto be handled here as it is only fired when the name (i.e. key) of a parameter63 // NOTE: The ItemsReplaced event does not have to be handled here as it is only fired when the name (i.e. key) of a parameter 64 64 // changes. As the same parameter is also contained in the Parameters collection of the operator, the Parameters collection 65 65 // will react on this name change on its own.
Note: See TracChangeset
for help on using the changeset viewer.