- Timestamp:
- 05/03/17 09:20:21 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/TSNE/Interfaces/IDistance.cs
r14767 r14911 20 20 #endregion 21 21 22 using System.Collections; 22 23 using System.Collections.Generic; 23 24 using HeuristicLab.Core; 24 25 25 26 namespace HeuristicLab.Algorithms.DataAnalysis { 26 public interface IDistance<in T> : IItem {27 public interface IDistance<in T> : IItem, IDistance { 27 28 /// <summary> 28 29 /// Calculates a distance measure between two objects. … … 41 42 IComparer<T> GetDistanceComparer(T item); 42 43 } 44 45 46 public interface IDistance : IItem { 47 double Get(object x, object y); 48 IComparer GetDistanceComparer(object item); 49 } 43 50 }
Note: See TracChangeset
for help on using the changeset viewer.