Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/22/10 16:34:44 (14 years ago)
Author:
abeham
Message:

updated SASEGASA #839
changed DataTableValuesCollector to plot IEnumerable<DoubleValue>
removed IMigrator from SASEGASAReunificator

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Optimization.Operators/3.3/SASEGASAReunificator.cs

    r3479 r3489  
    3434  /// scopes by 1 and uniformly partitions the sub sub scopes again, maintaining the order.
    3535  /// </summary>
    36   [Item("SASEGASAReunificator", "This operator merges the villages in a migration phase and redistributes the individuals. It is implemented as described in Affenzeller, M. et al. 2009. Genetic Algorithms and Genetic Programming - Modern Concepts and Practical Applications, CRC Press.")]
     36  [Item("SASEGASAReunificator", "This operator merges the villages (sub-scopes) and redistributes the individuals. It is implemented as described in Affenzeller, M. et al. 2009. Genetic Algorithms and Genetic Programming - Modern Concepts and Practical Applications, CRC Press.")]
    3737  [StorableClass]
    38   public class SASEGASAReunificator : SingleSuccessorOperator, IMigrator {
     38  public class SASEGASAReunificator : SingleSuccessorOperator {
    3939
    4040    public LookupParameter<IntValue> VillageCountParameter {
     
    7878      }
    7979
    80       // add remaining sub-sub-scopes to last sub-scope
     80      // add remaining individuals to last village
    8181      scope.SubScopes[scope.SubScopes.Count - 1].SubScopes.AddRange(population);
    8282      population.Clear();
Note: See TracChangeset for help on using the changeset viewer.