Changeset 16468 for branches/2520_PersistenceReintegration/HeuristicLab.Algorithms.DataAnalysis/3.4/TSNE/Distances
- Timestamp:
- 12/29/18 20:44:42 (6 years ago)
- Location:
- branches/2520_PersistenceReintegration/HeuristicLab.Algorithms.DataAnalysis/3.4/TSNE/Distances
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.Algorithms.DataAnalysis/3.4/TSNE/Distances/DistanceBase.cs
r16462 r16468 25 25 using HeuristicLab.Core; 26 26 using HEAL.Fossil; 27 using HeuristicLab.Persistence; 27 28 28 29 namespace HeuristicLab.Algorithms.DataAnalysis { … … 50 51 } 51 52 53 [StorableType("35fcecb5-9209-469b-9e4e-82efd8abfddf")] 52 54 internal class DistanceComparer : IComparer<T>, IComparer { 53 55 private readonly T item; … … 64 66 65 67 public int Compare(object x, object y) { 66 return Compare((T) x, (T)y);68 return Compare((T)x, (T)y); 67 69 } 68 70 } -
branches/2520_PersistenceReintegration/HeuristicLab.Algorithms.DataAnalysis/3.4/TSNE/Distances/IDistance.cs
r16453 r16468 23 23 using System.Collections.Generic; 24 24 using HeuristicLab.Core; 25 using HeuristicLab.Persistence; 25 26 26 27 namespace HeuristicLab.Algorithms.DataAnalysis { 28 [StorableType("168066b5-a14b-4d87-b3fb-6bac363e9c98")] 27 29 public interface IDistance<in T> : IDistance { 28 30 /// <summary> … … 43 45 } 44 46 45 47 [StorableType("3e44c812-79ad-404d-95e9-8d9c3467110c")] 46 48 public interface IDistance : IItem { 47 49 double Get(object x, object y);
Note: See TracChangeset
for help on using the changeset viewer.