Changeset 12069 for trunk/sources/HeuristicLab.Algorithms.LocalSearch
- Timestamp:
- 02/25/15 10:07:54 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.LocalSearch/3.3/LocalSearchImprovementOperator.cs
r12012 r12069 251 251 foreach (IAnalyzer analyzer in problem.Operators.OfType<IAnalyzer>()) { 252 252 if (!IsSubclassOfGeneric(typeof(AlleleFrequencyAnalyzer<>), analyzer.GetType()) && 253 !(analyzer is SingleObjectivePopulationDiversityAnalyzer)) {253 !(analyzer is PopulationSimilarityAnalyzer)) { 254 254 IAnalyzer clone = analyzer.Clone() as IAnalyzer; 255 255 foreach (IScopeTreeLookupParameter param in clone.Parameters.OfType<IScopeTreeLookupParameter>())
Note: See TracChangeset
for help on using the changeset viewer.