- Timestamp:
- 01/02/12 11:40:31 (13 years ago)
- Location:
- branches/RegressionBenchmarks
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/RegressionBenchmarks
-
branches/RegressionBenchmarks/HeuristicLab.Algorithms.ParticleSwarmOptimization/3.3/ParticleSwarmOptimization.cs
r6476 r7255 97 97 [Storable] 98 98 private ParticleSwarmOptimizationMainLoop mainLoop; 99 99 100 100 public override Type ProblemType { 101 101 get { return typeof(ISingleObjectiveHeuristicOptimizationProblem); } … … 317 317 if (Problem != null) { 318 318 foreach (IAnalyzer analyzer in Problem.Operators.OfType<IAnalyzer>()) 319 Analyzer.Operators.Add(analyzer );320 } 321 Analyzer.Operators.Add(qualityAnalyzer );319 Analyzer.Operators.Add(analyzer, analyzer.EnabledByDefault); 320 } 321 Analyzer.Operators.Add(qualityAnalyzer, qualityAnalyzer.EnabledByDefault); 322 322 } 323 323
Note: See TracChangeset
for help on using the changeset viewer.