#region License Information
/* HeuristicLab
* Copyright (C) 2002-2013 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.Common;
using HeuristicLab.Core;
using HeuristicLab.Data;
using HeuristicLab.Operators;
using HeuristicLab.Parameters;
using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
namespace HeuristicLab.Analysis {
///
/// An operator which calculates the absolute and relative difference of two quality values.
///
[Item("QualityDifferenceCalculator", "An operator which calculates the absolute and relative difference of two quality values.")]
[StorableClass]
public class QualityDifferenceCalculator : SingleSuccessorOperator {
public IValueLookupParameter FirstQualityParameter {
get { return (IValueLookupParameter)Parameters["FirstQuality"]; }
}
public IValueLookupParameter SecondQualityParameter {
get { return (IValueLookupParameter)Parameters["SecondQuality"]; }
}
public IValueLookupParameter AbsoluteDifferenceParameter {
get { return (IValueLookupParameter)Parameters["AbsoluteDifference"]; }
}
public IValueLookupParameter RelativeDifferenceParameter {
get { return (IValueLookupParameter)Parameters["RelativeDifference"]; }
}
#region Storing & Cloning
[StorableConstructor]
protected QualityDifferenceCalculator(bool deserializing) : base(deserializing) { }
protected QualityDifferenceCalculator(QualityDifferenceCalculator original, Cloner cloner) : base(original, cloner) { }
public override IDeepCloneable Clone(Cloner cloner) {
return new QualityDifferenceCalculator(this, cloner);
}
#endregion
public QualityDifferenceCalculator()
: base() {
Parameters.Add(new ValueLookupParameter("FirstQuality", "The first quality value from which the difference to the second quality value is calculated."));
Parameters.Add(new ValueLookupParameter("SecondQuality", "The second quality value from which the difference from the first quality value is calculated."));
Parameters.Add(new ValueLookupParameter("AbsoluteDifference", "The absolute difference of the first and second quality value."));
Parameters.Add(new ValueLookupParameter("RelativeDifference", "The relative difference of the first and second quality value."));
}
public override IOperation Apply() {
DoubleValue first = FirstQualityParameter.ActualValue;
DoubleValue second = SecondQualityParameter.ActualValue;
if ((first != null) && (second != null)) {
double absolute = second.Value - first.Value;
double relative = first.Value == 0 ? double.NaN : absolute / first.Value;
if (AbsoluteDifferenceParameter.ActualValue == null) AbsoluteDifferenceParameter.ActualValue = new DoubleValue(absolute);
else AbsoluteDifferenceParameter.ActualValue.Value = absolute;
if (RelativeDifferenceParameter.ActualValue == null) RelativeDifferenceParameter.ActualValue = new PercentValue(relative);
else RelativeDifferenceParameter.ActualValue.Value = relative;
}
return base.Apply();
}
}
}