Changeset 145 for branches/FunctionsAndStructIdRefactoring/HeuristicLab.Constraints/SubOperatorsConstraintAnalyser.cs
- Timestamp:
- 04/21/08 20:57:45 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/FunctionsAndStructIdRefactoring/HeuristicLab.Constraints/SubOperatorsConstraintAnalyser.cs
r2 r145 91 91 private static bool InSet(IOperator op, ICollection<IOperator> set) { 92 92 foreach(IOperator element in set) { 93 if(((StringData)element.GetVariable("TypeId").Value).Data == 93 if(element==op || 94 ((StringData)element.GetVariable("TypeId").Value).Data == 94 95 ((StringData)op.GetVariable("TypeId").Value).Data) { 95 96 return true;
Note: See TracChangeset
for help on using the changeset viewer.