Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Analysis.AlgorithmBehavior/HeuristicLab.Analysis.AlgorithmBehavior.Analyzers/3.3/CombinedOperators/TFAfterCrossoverCombinedOperator.cs @ 10101

Last change on this file since 10101 was 10096, checked in by ascheibe, 11 years ago

#1886 started working on crossover wrappers that can execute analyzers for crossovers

File size: 2.7 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22using HeuristicLab.Analysis.SolutionCaching.RealVectorEncoding;
23using HeuristicLab.Common;
24using HeuristicLab.Core;
25using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
26
27namespace HeuristicLab.Analysis.AlgorithmBehavior.Analyzers {
28  [Item("TFAfterCrossoverCombinedOperator", "An operator that contains all operators that need to be executed after crossover for test functions.")]
29  [StorableClass]
30  public class TFAfterCrossoverCombinedOperator : AfterCrossoverCombinedOperator, IRealVectorAdvice {
31
32    [StorableConstructor]
33    protected TFAfterCrossoverCombinedOperator(bool deserializing) : base(deserializing) { }
34    protected TFAfterCrossoverCombinedOperator(TFAfterCrossoverCombinedOperator original, Cloner cloner)
35      : base(original, cloner) {
36    }
37
38    public TFAfterCrossoverCombinedOperator()
39      : base() {
40    }
41
42    protected override void SimilarityCalculatorParameter_ValueChanged(object sender, System.EventArgs e) {
43      SimilarityCalculatorParameter.Value.QualityVariableName = "Point";
44      SimilarityCalculatorParameter.Value.SolutionVariableName = "Quality";
45    }
46
47    public override IDeepCloneable Clone(Cloner cloner) {
48      return new TFAfterCrossoverCombinedOperator(this, cloner);
49    }
50
51    public override void InitializeOperators() {
52      base.InitializeOperators();
53
54      cxAnalyzer.ParentsQualityParameter.ActualName = "Quality";
55      cxAnalyzer.QualityParameter.ActualName = "Quality";
56
57      varDuplicator.OriginalParameter.ActualName = "Point";
58      varDuplicator.CloneParameter.ActualName = "PointClone";
59
60      solToPopAnalyzer.SolutionParameter.ActualName = "Point";
61      solToPopAnalyzer.QualityParameter.ActualName = "Quality";
62
63      wqAnalyzer.ParentsQualityParameter.ActualName = "Quality";
64      //TODO: add unwanted mutation analyzer for TF
65
66      selPressureAnalyzer.SolutionQualityName = "Quality";
67    }
68  }
69}
Note: See TracBrowser for help on using the repository browser.