Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/26/17 23:13:15 (7 years ago)
Author:
abeham
Message:

#2730:

  • Unified implementation of all equality comparers and similarity calculators in BinaryVector, IntegerVector, RealVector, Permutation, and LinearLinkage encodings
  • Added Euclidean distance-based similarity calculators for real and integer vectors using a transformation function with scaling parameter
Location:
trunk/sources/HeuristicLab.Encodings.BinaryVectorEncoding/3.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Encodings.BinaryVectorEncoding/3.3/BinaryVectorEqualityComparer.cs

    r14659 r15067  
    1919 */
    2020#endregion
    21  
     21
     22using System;
    2223using System.Collections.Generic;
    23 using System.Linq;
     24using HeuristicLab.PluginInfrastructure;
    2425
    2526namespace HeuristicLab.Encodings.BinaryVectorEncoding {
     27  [NonDiscoverableType]
    2628  public class BinaryVectorEqualityComparer : EqualityComparer<BinaryVector> {
    27     public override bool Equals(BinaryVector first, BinaryVector second) {
    28       return first.SequenceEqual(second);
     29    public override bool Equals(BinaryVector x, BinaryVector y) {
     30      if (x == null && y == null) return true;
     31      if (x == null || y == null) return false;
     32      if (ReferenceEquals(x, y)) return true;
     33      if (x.Length != y.Length) return false;
     34      for (var i = 0; i < x.Length; i++)
     35        if (x[i] != y[i]) return false;
     36      return true;
    2937    }
    3038    public override int GetHashCode(BinaryVector obj) {
     39      if (obj == null) throw new ArgumentNullException("obj", "BinaryVectorEqualityComparer: Cannot compute hash value of null.");
    3140      unchecked {
    3241        int hash = 17;
  • trunk/sources/HeuristicLab.Encodings.BinaryVectorEncoding/3.3/SimilarityCalculators/HammingSimilarityCalculator.cs

    r14659 r15067  
    4545    public static double CalculateSimilarity(BinaryVector left, BinaryVector right) {
    4646      if (left == null || right == null)
    47         throw new ArgumentException("Cannot calculate similarity because one or both of the provided scopes is null.");
     47        throw new ArgumentException("Cannot calculate similarity because one or both of the provided solutions is null.");
    4848      if (left.Length != right.Length)
    4949        throw new ArgumentException("Cannot calculate similarity because the provided solutions have different lengths.");
    50       if (left == right) return 1.0;
     50      if (left.Length == 0)
     51        throw new ArgumentException("Cannot calculate similarity because solutions are of length 0.");
     52      if (ReferenceEquals(left, right)) return 1.0;
    5153
    5254      double similarity = 0.0;
Note: See TracChangeset for help on using the changeset viewer.