#region License Information /* HeuristicLab * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) * * This file is part of HeuristicLab. * * HeuristicLab is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * HeuristicLab is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with HeuristicLab. If not, see . */ #endregion using HeuristicLab.Analysis; using HeuristicLab.Common; using HeuristicLab.Core; using HeuristicLab.Data; using HeuristicLab.Operators; using HeuristicLab.Optimization; using HeuristicLab.Optimization.Operators; using HeuristicLab.Parameters; using HEAL.Attic; namespace HeuristicLab.Algorithms.RAPGA { /// /// An operator which analyzes the actual selection pressure. /// [Item("SelectionPressureAnalyzer", "An operator which analyzes the actual selection pressure.")] [StorableType("D09EA429-381C-43EC-B033-36B113886CB8")] public sealed class SelectionPressureAnalyzer : AlgorithmOperator, IAnalyzer { #region Parameter properties public ILookupParameter ActualSelectionPressureParameter { get { return (ILookupParameter)Parameters["ActualSelectionPressure"]; } } public IValueLookupParameter SelectionPressureParameter { get { return (IValueLookupParameter)Parameters["SelectionPressure"]; } } public IValueLookupParameter ResultsParameter { get { return (IValueLookupParameter)Parameters["Results"]; } } #endregion #region Properties public bool EnabledByDefault { get { return true; } } private DataTableValuesCollector DataTableValuesCollector { get { return (DataTableValuesCollector)OperatorGraph.InitialOperator; } } private ResultsCollector ResultsCollector { get { return (ResultsCollector)DataTableValuesCollector.Successor; } } #endregion #region Storing & Cloning [StorableConstructor] private SelectionPressureAnalyzer(StorableConstructorFlag _) : base(_) { } private SelectionPressureAnalyzer(SelectionPressureAnalyzer original, Cloner cloner) : base(original, cloner) { } public override IDeepCloneable Clone(Cloner cloner) { return new SelectionPressureAnalyzer(this, cloner); } #endregion public SelectionPressureAnalyzer() : base() { #region Create parameters Parameters.Add(new LookupParameter("ActualSelectionPressure", "The actual selection pressure.")); Parameters.Add(new ValueLookupParameter("SelectionPressure", "The data table to store the values.")); Parameters.Add(new ValueLookupParameter("Results", "The results collection where the analysis values should be stored.")); #endregion #region Create operators DataTableValuesCollector dataTableValuesCollector = new DataTableValuesCollector(); ResultsCollector resultsCollector = new ResultsCollector(); dataTableValuesCollector.CollectedValues.Add(new LookupParameter("ActualSelectionPressure", null, ActualSelectionPressureParameter.Name)); dataTableValuesCollector.DataTableParameter.ActualName = SelectionPressureParameter.Name; resultsCollector.CollectedValues.Add(new LookupParameter(SelectionPressureParameter.Name)); resultsCollector.ResultsParameter.ActualName = ResultsParameter.Name; #endregion #region Create operator graph OperatorGraph.InitialOperator = dataTableValuesCollector; dataTableValuesCollector.Successor = resultsCollector; resultsCollector.Successor = null; #endregion } } }