Free cookie consent management tool by TermsFeed Policy Generator

Changeset 2831


Ignore:
Timestamp:
02/19/10 02:18:27 (15 years ago)
Author:
swagner
Message:

Operator architecture refactoring (#95)

  • implemented reviewers' comments
Location:
trunk/sources/HeuristicLab.Operators/3.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Operators/3.3/Comparator.cs

    r2794 r2831  
    7575          b = i == 0; break;
    7676        case HeuristicLab.Data.Comparison.GreaterOrEqual:
     77          b = i >= 0; break;
     78        case HeuristicLab.Data.Comparison.Greater:
    7779          b = i > 0; break;
    78         case HeuristicLab.Data.Comparison.Greater:
    79           b = i >= 0; break;
    8080        case HeuristicLab.Data.Comparison.NotEqual:
    8181          b = i != 0; break;
  • trunk/sources/HeuristicLab.Operators/3.3/ValuesCollector.cs

    r2794 r2831  
    6161    }
    6262    #region NOTE
    63     // NOTE: The ItemsReplaced event has not to be handled here as it is only fired when the name (i.e. key) of a parameter
     63    // 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
    6464    // changes. As the same parameter is also contained in the Parameters collection of the operator, the Parameters collection
    6565    // will react on this name change on its own.
Note: See TracChangeset for help on using the changeset viewer.