[9089] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2012 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 |
|
---|
| 22 | using System;
|
---|
| 23 | using HeuristicLab.Common;
|
---|
| 24 | using HeuristicLab.Core;
|
---|
| 25 | using HeuristicLab.Data;
|
---|
| 26 | using HeuristicLab.Operators;
|
---|
| 27 | using HeuristicLab.Parameters;
|
---|
| 28 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 29 |
|
---|
| 30 | namespace HeuristicLab.Encodings.ConditionActionEncoding {
|
---|
| 31 | [Item("CalculateAccuracy", "")]
|
---|
| 32 | [StorableClass]
|
---|
| 33 | public class CalculateAccuracy : SingleSuccessorOperator {
|
---|
| 34 | public ILookupParameter<PercentValue> AlphaParameter {
|
---|
| 35 | get { return (ILookupParameter<PercentValue>)Parameters["Alpha"]; }
|
---|
| 36 | }
|
---|
| 37 | public ILookupParameter<DoubleValue> ErrorParameter {
|
---|
| 38 | get { return (ILookupParameter<DoubleValue>)Parameters["Error"]; }
|
---|
| 39 | }
|
---|
| 40 | public ILookupParameter<DoubleValue> ErrorZeroParameter {
|
---|
| 41 | get { return (ILookupParameter<DoubleValue>)Parameters["ErrorZero"]; }
|
---|
| 42 | }
|
---|
| 43 | public ILookupParameter<DoubleValue> PowerParameter {
|
---|
| 44 | get { return (ILookupParameter<DoubleValue>)Parameters["v"]; }
|
---|
| 45 | }
|
---|
| 46 | public IValueLookupParameter<DoubleValue> AccuracyParameter {
|
---|
| 47 | get { return (IValueLookupParameter<DoubleValue>)Parameters["Accuracy"]; }
|
---|
| 48 | }
|
---|
| 49 |
|
---|
| 50 | private double Error {
|
---|
| 51 | get { return ErrorParameter.ActualValue.Value; }
|
---|
| 52 | }
|
---|
| 53 | private double ErrorZero {
|
---|
| 54 | get { return ErrorZeroParameter.ActualValue.Value; }
|
---|
| 55 | }
|
---|
| 56 | private double Alpha {
|
---|
| 57 | get { return AlphaParameter.ActualValue.Value; }
|
---|
| 58 | }
|
---|
| 59 | private double Power {
|
---|
| 60 | get { return PowerParameter.ActualValue.Value; }
|
---|
| 61 | }
|
---|
| 62 |
|
---|
| 63 | [StorableConstructor]
|
---|
| 64 | protected CalculateAccuracy(bool deserializing) : base(deserializing) { }
|
---|
| 65 | protected CalculateAccuracy(CalculateAccuracy original, Cloner cloner)
|
---|
| 66 | : base(original, cloner) {
|
---|
| 67 | }
|
---|
| 68 | public CalculateAccuracy()
|
---|
| 69 | : base() {
|
---|
| 70 | Parameters.Add(new LookupParameter<PercentValue>("Alpha"));
|
---|
| 71 | Parameters.Add(new LookupParameter<DoubleValue>("Error"));
|
---|
| 72 | Parameters.Add(new LookupParameter<DoubleValue>("ErrorZero"));
|
---|
| 73 | Parameters.Add(new LookupParameter<DoubleValue>("v"));
|
---|
| 74 | Parameters.Add(new ValueLookupParameter<DoubleValue>("Accuracy"));
|
---|
| 75 | }
|
---|
| 76 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 77 | return new CalculateAccuracy(this, cloner);
|
---|
| 78 | }
|
---|
| 79 |
|
---|
| 80 | public override IOperation Apply() {
|
---|
| 81 | if (Error < ErrorZero) {
|
---|
| 82 | AccuracyParameter.ActualValue = new DoubleValue(1);
|
---|
| 83 | } else {
|
---|
| 84 | AccuracyParameter.ActualValue = new DoubleValue(Alpha * Math.Pow(Error / ErrorZero, -Power));
|
---|
| 85 | }
|
---|
| 86 | return base.Apply();
|
---|
| 87 | }
|
---|
| 88 | }
|
---|
| 89 | }
|
---|