- Timestamp:
- 05/13/10 20:05:19 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/IslandOffspringSelectionGeneticAlgorithm.cs
r3750 r3799 577 577 IslandAnalyzer.Operators.Add(islandQualityAnalyzer); 578 578 IslandAnalyzer.Operators.Add(islandSelectionPressureAnalyzer); 579 Analyzer.Operators.Add(qualityAnalyzer);580 Analyzer.Operators.Add(selectionPressureAnalyzer);581 579 if (Problem != null) { 582 580 foreach (IAnalyzer analyzer in Problem.Operators.OfType<IAnalyzer>().OrderBy(x => x.Name)) { … … 586 584 } 587 585 } 586 Analyzer.Operators.Add(qualityAnalyzer); 587 Analyzer.Operators.Add(selectionPressureAnalyzer); 588 588 } 589 589 #endregion -
trunk/sources/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/OffspringSelectionGeneticAlgorithm.cs
r3750 r3799 426 426 private void UpdateAnalyzers() { 427 427 Analyzer.Operators.Clear(); 428 Analyzer.Operators.Add(qualityAnalyzer);429 Analyzer.Operators.Add(selectionPressureAnalyzer);430 428 if (Problem != null) { 431 429 foreach (IAnalyzer analyzer in Problem.Operators.OfType<IAnalyzer>().OrderBy(x => x.Name)) { … … 435 433 } 436 434 } 435 Analyzer.Operators.Add(qualityAnalyzer); 436 Analyzer.Operators.Add(selectionPressureAnalyzer); 437 437 } 438 438 #endregion -
trunk/sources/HeuristicLab.Algorithms.OffspringSelectionGeneticAlgorithm/3.3/SASEGASA.cs
r3750 r3799 515 515 VillageAnalyzer.Operators.Add(villageQualityAnalyzer); 516 516 VillageAnalyzer.Operators.Add(villageSelectionPressureAnalyzer); 517 Analyzer.Operators.Add(qualityAnalyzer);518 Analyzer.Operators.Add(selectionPressureAnalyzer);519 517 if (Problem != null) { 520 518 foreach (IAnalyzer analyzer in Problem.Operators.OfType<IAnalyzer>().OrderBy(x => x.Name)) { … … 524 522 } 525 523 } 524 Analyzer.Operators.Add(qualityAnalyzer); 525 Analyzer.Operators.Add(selectionPressureAnalyzer); 526 526 } 527 527 #endregion
Note: See TracChangeset
for help on using the changeset viewer.