#region License Information
/* HeuristicLab
* Copyright (C) 2002-2015 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 HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
namespace HeuristicLab.Algorithms.RAPGA {
///
/// An operator which analyzes the success of the created offspring in a generation.
///
[Item("OffspringSuccessAnalyzer", "An operator which analyzes the success of the created offspring in a generation.")]
[StorableClass]
public sealed class OffspringSuccessAnalyzer : AlgorithmOperator, IAnalyzer {
#region Parameter properties
public ILookupParameter NumberOfCreatedOffspringParameter {
get { return (ILookupParameter)Parameters["NumberOfCreatedOffspring"]; }
}
public ILookupParameter NumberOfSuccessfulOffspringParameter {
get { return (ILookupParameter)Parameters["NumberOfSuccessfulOffspring"]; }
}
public ILookupParameter EffortParameter {
get { return (ILookupParameter)Parameters["Effort"]; }
}
public ILookupParameter MaximumPopulationSizeParameter {
get { return (ILookupParameter)Parameters["MaximumPopulationSize"]; }
}
public IValueLookupParameter OffspringSuccessParameter {
get { return (IValueLookupParameter)Parameters["OffspringSuccess"]; }
}
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 OffspringSuccessAnalyzer(bool deserializing) : base(deserializing) { }
private OffspringSuccessAnalyzer(OffspringSuccessAnalyzer original, Cloner cloner) : base(original, cloner) { }
public override IDeepCloneable Clone(Cloner cloner) {
return new OffspringSuccessAnalyzer(this, cloner);
}
#endregion
public OffspringSuccessAnalyzer()
: base() {
#region Create parameters
Parameters.Add(new LookupParameter("NumberOfCreatedOffspring", "The current number of created offspring."));
Parameters.Add(new LookupParameter("NumberOfSuccessfulOffspring", "The current number of successful offspring."));
Parameters.Add(new LookupParameter("Effort", "The maximum number of offspring created in each generation."));
Parameters.Add(new LookupParameter("MaximumPopulationSize", "The maximum size of the population in the scope tree which should be analyzed."));
Parameters.Add(new ValueLookupParameter("OffspringSuccess", "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("NumberOfCreatedOffspring", null, NumberOfCreatedOffspringParameter.Name));
dataTableValuesCollector.CollectedValues.Add(new LookupParameter("NumberOfSuccessfulOffspring", null, NumberOfSuccessfulOffspringParameter.Name));
dataTableValuesCollector.CollectedValues.Add(new LookupParameter("Effort", null, EffortParameter.Name));
dataTableValuesCollector.CollectedValues.Add(new LookupParameter("MaximumPopulationSize", null, MaximumPopulationSizeParameter.Name));
dataTableValuesCollector.DataTableParameter.ActualName = OffspringSuccessParameter.Name;
resultsCollector.CollectedValues.Add(new LookupParameter(OffspringSuccessParameter.Name));
resultsCollector.ResultsParameter.ActualName = ResultsParameter.Name;
#endregion
#region Create operator graph
OperatorGraph.InitialOperator = dataTableValuesCollector;
dataTableValuesCollector.Successor = resultsCollector;
resultsCollector.Successor = null;
#endregion
}
}
}