Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/25/14 15:25:01 (9 years ago)
Author:
pfleck
Message:

#2269 Implemented EldersEmigrator.

  • Implemented EldersSelector and ShiftToRightMigrator.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ALPS/HeuristicLab.Algorithms.ALPS/3.3/AlpsGeneticAlgorithm.cs

    r11583 r11585  
    230230      var layer0Processor = new SubScopesProcessor();
    231231      var localRandomCreator = new LocalRandomCreator();
     232      var layerVariableCreator = new VariableCreator();
    232233      var layerSolutionsCreator = new SolutionsCreator();
    233234      var initializeAgeProcessor = new UniformSubScopesProcessor();
     
    251252      layer0Processor.Successor = initializeGlobalEvaluatedSolutions;
    252253
    253       localRandomCreator.Successor = layerSolutionsCreator;
     254      localRandomCreator.Successor = layerVariableCreator;
     255
     256      layerVariableCreator.CollectedValues.Add(new ValueParameter<IntValue>("Layer", new IntValue(0)));
     257      layerVariableCreator.Successor = layerSolutionsCreator;
    254258
    255259      layerSolutionsCreator.NumberOfSolutionsParameter.ActualName = PopulationSizeParameter.Name;
Note: See TracChangeset for help on using the changeset viewer.