Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.TestFunctions/3.3/MoveEvaluators/AdditiveMoveEvaluator.cs @ 3295

Last change on this file since 3295 was 3187, checked in by abeham, 15 years ago

Added move operators for real encoding and test functions #890

File size: 3.0 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 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 System;
23using HeuristicLab.Core;
24using HeuristicLab.Data;
25using HeuristicLab.Operators;
26using HeuristicLab.Optimization;
27using HeuristicLab.Parameters;
28using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
29using HeuristicLab.Encodings.RealVectorEncoding;
30
31namespace HeuristicLab.Problems.TestFunctions {
32  [Item("AdditiveMoveEvaluator", "Base class for evaluating an additive move.")]
33  [StorableClass]
34  public abstract class AdditiveMoveEvaluator : SingleSuccessorOperator, ISingleObjectiveTestFunctionAdditiveMoveEvaluator {
35    public abstract Type EvaluatorType { get; }
36    public ILookupParameter<DoubleValue> QualityParameter {
37      get { return (ILookupParameter<DoubleValue>)Parameters["Quality"]; }
38    }
39    public ILookupParameter<DoubleValue> MoveQualityParameter {
40      get { return (ILookupParameter<DoubleValue>)Parameters["MoveQuality"]; }
41    }
42    public ILookupParameter<RealVector> RealVectorParameter {
43      get { return (ILookupParameter<RealVector>)Parameters["Point"]; }
44    }
45    public ILookupParameter<AdditiveMove> AdditiveMoveParameter {
46      get { return (ILookupParameter<AdditiveMove>)Parameters["AdditiveMove"]; }
47    }
48
49    protected AdditiveMoveEvaluator()
50      : base() {
51      Parameters.Add(new LookupParameter<DoubleValue>("Quality", "The quality of a TSP solution."));
52      Parameters.Add(new LookupParameter<DoubleValue>("MoveQuality", "The evaluated quality of a move on a TSP solution."));
53      Parameters.Add(new LookupParameter<RealVector>("Point", "The point to evaluate the move on."));
54      Parameters.Add(new LookupParameter<AdditiveMove>("AdditiveMove", "The move to evaluate."));
55    }
56
57    public override IOperation Apply() {
58      double mq = Evaluate(QualityParameter.ActualValue.Value, RealVectorParameter.ActualValue, AdditiveMoveParameter.ActualValue);
59      DoubleValue moveQuality = MoveQualityParameter.ActualValue;
60      if (moveQuality == null) {
61        MoveQualityParameter.ActualValue = new DoubleValue(mq);
62      } else moveQuality.Value = mq;
63      return base.Apply();
64    }
65
66    protected abstract double Evaluate(double quality, RealVector point, AdditiveMove move);
67  }
68}
Note: See TracBrowser for help on using the repository browser.