[14512] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2016 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 System.Collections.Generic;
|
---|
| 24 | using System.Linq;
|
---|
| 25 | using HeuristicLab.Common;
|
---|
| 26 | using HeuristicLab.Core;
|
---|
| 27 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 28 |
|
---|
| 29 | namespace HeuristicLab.Problems.SurrogateProblem {
|
---|
| 30 | [StorableClass]
|
---|
| 31 | [Item("AngularDistance", "The Angluar Distance as defined as a normalized distance measure dependent on the angle between two vectors.\nIt is designed for vectors with all positive coordinates")]
|
---|
| 32 | public class AngularDistance : DistanceBase<IReadOnlyList<double>> {
|
---|
| 33 |
|
---|
| 34 | #region HLConstructors
|
---|
| 35 | [StorableConstructor]
|
---|
| 36 | protected AngularDistance(bool deserializing) : base(deserializing) { }
|
---|
| 37 | protected AngularDistance(AngularDistance original, Cloner cloner)
|
---|
| 38 | : base(original, cloner) { }
|
---|
| 39 | public AngularDistance() { }
|
---|
| 40 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 41 | return new AngularDistance(this, cloner);
|
---|
| 42 | }
|
---|
| 43 | #endregion
|
---|
| 44 |
|
---|
| 45 | #region statics
|
---|
| 46 | public static double GetDistance(IReadOnlyList<double> point1, IReadOnlyList<double> point2) {
|
---|
| 47 | if (point1.Count != point2.Count) throw new ArgumentException("Angluar distance not defined on vectors of different length");
|
---|
| 48 | var innerProduct = point1.Zip(point2, (x, y) => x * y).Sum();
|
---|
| 49 | var res = Math.Acos(innerProduct / (point1.Norm() * point2.Norm())) / Math.PI;
|
---|
| 50 | return double.IsNaN(res) ? 0 : res;
|
---|
| 51 | }
|
---|
| 52 | public static double GetDistance(IReadOnlyList<double> a, IReadOnlyList<double> b, double threshold) {
|
---|
| 53 | return GetDistance(a, b); //no shortcut evaluation for Angular Distance
|
---|
| 54 | }
|
---|
| 55 | #endregion
|
---|
| 56 | public override double Get(IReadOnlyList<double> a, IReadOnlyList<double> b) {
|
---|
| 57 | return GetDistance(a, b);
|
---|
| 58 | }
|
---|
| 59 | public override double Get(IReadOnlyList<double> a, IReadOnlyList<double> b, double threshold) {
|
---|
| 60 | return GetDistance(a, b, threshold);
|
---|
| 61 | }
|
---|
| 62 | }
|
---|
| 63 | }
|
---|