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