Changeset 7289
- Timestamp:
- 01/08/12 19:01:18 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HiveHiveEngine/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/ParallelIslandGeneticAlgorithmMainLoop.cs
r7288 r7289 187 187 UniformSubScopesProcessor uniformSubScopesProcessor5 = new UniformSubScopesProcessor(); 188 188 Placeholder emigrantsSelector = new Placeholder(); 189 IntCounter migrationsCounter = new IntCounter(); 189 190 Placeholder migrator = new Placeholder(); 190 191 UniformSubScopesProcessor uniformSubScopesProcessor6 = new UniformSubScopesProcessor(); … … 271 272 generationsReducer.Name = "Increment Generations"; 272 273 generationsReducer.ParameterToReduce.Value = new StringValue(islandGenerationsCounter.ValueParameter.ActualName); 273 generationsReducer.TargetParameterName.Value = new StringValue("Generations"); //TODO: fixme274 generationsReducer.TargetParameterName.Value = new StringValue("Generations"); 274 275 275 276 evaluatedSolutionsReducer.Name = "Increment Evaluated Solutions"; … … 279 280 emigrantsSelector.Name = "Emigrants Selector (placeholder)"; 280 281 emigrantsSelector.OperatorParameter.ActualName = EmigrantsSelectorParameter.Name; 282 283 migrationsCounter.Name = "Increment number of Migrations"; 284 migrationsCounter.ValueParameter.ActualName = "Migrations"; 285 migrationsCounter.Increment = new IntValue(1); 281 286 282 287 migrator.Name = "Migrator (placeholder)"; … … 344 349 islandAnalyzer2.Successor = null; 345 350 uniformSubScopesProcessor5.Operator = emigrantsSelector; 351 emigrantsSelector.Successor = migrationsCounter; 346 352 uniformSubScopesProcessor5.Successor = migrator; 347 353 migrator.Successor = uniformSubScopesProcessor6;
Note: See TracChangeset
for help on using the changeset viewer.