Changeset 13134 for stable/HeuristicLab.Algorithms.GeneticAlgorithm
- Timestamp:
- 11/10/15 15:51:54 (9 years ago)
- Location:
- stable
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 13078,13094,13109
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/IslandGeneticAlgorithm.cs
r12708 r13134 339 339 ParameterizeSelectors(); 340 340 341 foreach (IMigrator migrator in ApplicationManager.Manager.GetInstances<IMigrator>().OrderBy(x => x.Name)) 341 foreach (IMigrator migrator in ApplicationManager.Manager.GetInstances<IMigrator>().OrderBy(x => x.Name)) { 342 // BackwardsCompatibility3.3 343 // Set the migration direction to counterclockwise 344 var unidirectionalRing = migrator as UnidirectionalRingMigrator; 345 if (unidirectionalRing != null) unidirectionalRing.ClockwiseMigrationParameter.Value = new BoolValue(false); 342 346 MigratorParameter.ValidValues.Add(migrator); 347 } 343 348 344 349 qualityAnalyzer = new BestAverageWorstQualityAnalyzer();
Note: See TracChangeset
for help on using the changeset viewer.