Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/03/08 23:14:08 (16 years ago)
Author:
gkronber
Message:

removed 'TypeIds' for functions (also a relic of an old design) (ticket #225)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Constraints/SubOperatorsConstraintAnalyser.cs

    r155 r430  
    9191    private static bool InSet(IOperator op, ICollection<IOperator> set) {
    9292      foreach(IOperator element in set) {
    93         if(element==op ||
    94           ((StringData)element.GetVariable("TypeId").Value).Data ==
    95           ((StringData)op.GetVariable("TypeId").Value).Data) {
     93        if(element == op)
    9694          return true;
    97         }
    9895      }
    99 
    10096      return false;
    10197    }
     
    132128        }
    133129      }
    134      
     130
    135131      public override void Visit(OrConstraint constraint) {
    136132        base.Visit(constraint);
Note: See TracChangeset for help on using the changeset viewer.