Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/28/13 18:03:39 (11 years ago)
Author:
ascheibe
Message:

#1886 renamed analyzers to collectors to avoid confusion

File:
1 moved

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.SolutionCaching/3.3/PermutationEncoding/PermutationSolutionCacheCollector.cs

    r10090 r10091  
    3030
    3131namespace HeuristicLab.Analysis.SolutionCaching.PermutationEncoding {
    32   [Item("PermutationSolutionCachingAnalyzer", "An operator that records all Permutation solutions every generation for GAs.")]
     32  [Item("PermutationSolutionCacheCollector", "An operator that records all Permutation solutions every generation for GAs.")]
    3333  [StorableClass]
    34   public class PermutationSolutionCachingAnalyzer : SingleSuccessorOperator, IAnalyzer {
     34  public class PermutationSolutionCacheCollector : SingleSuccessorOperator, IAnalyzer {
    3535    private const string ResultsParameterName = "Results";
    3636
     
    6060
    6161    [StorableConstructor]
    62     private PermutationSolutionCachingAnalyzer(bool deserializing) : base(deserializing) { }
     62    private PermutationSolutionCacheCollector(bool deserializing) : base(deserializing) { }
    6363
    64     private PermutationSolutionCachingAnalyzer(PermutationSolutionCachingAnalyzer original, Cloner cloner)
     64    private PermutationSolutionCacheCollector(PermutationSolutionCacheCollector original, Cloner cloner)
    6565      : base(original, cloner) {
    6666    }
    6767
    68     public PermutationSolutionCachingAnalyzer()
     68    public PermutationSolutionCacheCollector()
    6969      : base() {
    7070      Parameters.Add(new LookupParameter<ResultCollection>(ResultsParameterName, "The results collection where the analysis values should be stored."));
     
    7474
    7575    public override IDeepCloneable Clone(Cloner cloner) {
    76       return new PermutationSolutionCachingAnalyzer(this, cloner);
     76      return new PermutationSolutionCacheCollector(this, cloner);
    7777    }
    7878
Note: See TracChangeset for help on using the changeset viewer.