Changeset 7323 for branches/HiveHiveEngine/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/ParallelIslandGeneticAlgorithmMainLoop.cs
- Timestamp:
- 01/13/12 00:13:33 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HiveHiveEngine/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/ParallelIslandGeneticAlgorithmMainLoop.cs
r7322 r7323 181 181 Comparator checkIslandGenerationsReachedMaximum = new Comparator(); 182 182 ConditionalBranch checkContinueEvolution = new ConditionalBranch(); 183 SubScopesIntReducer generationsReducer = new SubScopesIntReducer();184 AllSubScopesIntReducer evaluatedSolutionsReducer = new AllSubScopesIntReducer();183 IntDataReducer generationsReducer = new IntDataReducer(); 184 IntDataReducer evaluatedSolutionsReducer = new IntDataReducer(); 185 185 Placeholder islandAnalyzer2 = new Placeholder(); 186 186 UniformSubScopesProcessor uniformSubScopesProcessor5 = new UniformSubScopesProcessor(); … … 270 270 generationsReducer.ParameterToReduce.ActualName = islandGenerationsCounter.ValueParameter.ActualName; 271 271 generationsReducer.TargetParameterName.Value = new StringValue("Generations"); 272 generationsReducer.ReductionOperation.Value = new ReductionType(ReductionTypes.Min); 272 273 273 274 evaluatedSolutionsReducer.Name = "Increment Evaluated Solutions"; 274 275 evaluatedSolutionsReducer.ParameterToReduce.ActualName = IslandEvaluatedSolutions.Name; 275 276 evaluatedSolutionsReducer.TargetParameterName.Value = new StringValue(EvaluatedSolutionsParameter.Name); 277 evaluatedSolutionsReducer.ReductionOperation.Value = new ReductionType(ReductionTypes.Sum); 276 278 277 279 emigrantsSelector.Name = "Emigrants Selector (placeholder)";
Note: See TracChangeset
for help on using the changeset viewer.