Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2457_ExpertSystem/HeuristicLab.Analysis.FitnessLandscape/3.3/FDC/RealVectorFitnessDistanceCorrelationAnalyzer.cs @ 16958

Last change on this file since 16958 was 16958, checked in by abeham, 5 years ago

#2457: adapted to trunk

File size: 3.3 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 System.Collections.Generic;
24using System.Linq;
25using HEAL.Attic;
26using HeuristicLab.Common;
27using HeuristicLab.Core;
28using HeuristicLab.Encodings.RealVectorEncoding;
29using HeuristicLab.Parameters;
30
31namespace HeuristicLab.Analysis.FitnessLandscape {
32
33  [Item("RealVectorFitnessDistanceCorrelationAnalyzer", "An operator that analyzes the correlation between fitness and distance to the best know solution for real vector encoding")]
34  [StorableType("84EA2C55-F847-4CF9-B966-0E7B9DD8903C")]
35  public class RealVectorFitnessDistanceCorrelationAnalyzer : FitnessDistanceCorrelationAnalyzer, IRealVectorOperator {
36
37    #region Parameters
38    public ScopeTreeLookupParameter<RealVector> RealVectorParameter {
39      get { return (ScopeTreeLookupParameter<RealVector>)Parameters["RealVector"]; }
40    }
41    public LookupParameter<RealVector> BestKnownSolution {
42      get { return (LookupParameter<RealVector>)Parameters["BestKnownSolution"]; }
43    }
44    #endregion
45
46    [StorableConstructor]
47    protected RealVectorFitnessDistanceCorrelationAnalyzer(StorableConstructorFlag _) : base(_) { }
48    protected RealVectorFitnessDistanceCorrelationAnalyzer(RealVectorFitnessDistanceCorrelationAnalyzer original, Cloner cloner) : base(original, cloner) { }
49
50    public RealVectorFitnessDistanceCorrelationAnalyzer() {
51      Parameters.Add(new ScopeTreeLookupParameter<RealVector>("RealVector", "The real encoded solution"));
52      Parameters.Add(new LookupParameter<RealVector>("BestKnownSolution", "The best known solution"));
53      RealVectorParameter.ActualName = "Point";
54    }
55
56    public override IDeepCloneable Clone(Cloner cloner) {
57      return new RealVectorFitnessDistanceCorrelationAnalyzer(this, cloner);
58    }
59
60    public static double Distance(RealVector a, RealVector b) {
61      if (a.Length != b.Length)
62        throw new InvalidOperationException("Cannot compare vectors of different lengths");
63      double sum = 0;
64      for (int i = 0; i < a.Length; i++) {
65        sum += (a[i] - b[i]) * (a[i] - b[i]);
66      }
67      return Math.Sqrt(sum);
68    }
69
70    protected override IEnumerable<double> GetDistancesToBestKnownSolution() {
71      if (this.RealVectorParameter.ActualValue == null)
72        return new double[0];
73      RealVector bestKnownValue = BestKnownSolution.ActualValue;
74      if (bestKnownValue == null)
75        return RealVectorParameter.ActualValue.Select(v => 0d);
76      return RealVectorParameter.ActualValue.Select(v => Distance(v, bestKnownValue));
77    }
78  }
79}
Note: See TracBrowser for help on using the repository browser.