Free cookie consent management tool by TermsFeed Policy Generator

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

Operator architecture refactoring (#95)

  • implemented reviewers' comments
File:
1 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;
Note: See TracChangeset for help on using the changeset viewer.