Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/03/17 09:20:21 (7 years ago)
Author:
gkronber
Message:

#2699: copied kernel ridge regression from branch to trunk

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/TSNE/Interfaces/IDistance.cs

    r14767 r14911  
    2020#endregion
    2121
     22using System.Collections;
    2223using System.Collections.Generic;
    2324using HeuristicLab.Core;
    2425
    2526namespace HeuristicLab.Algorithms.DataAnalysis {
    26   public interface IDistance<in T> : IItem {
     27  public interface IDistance<in T> : IItem, IDistance {
    2728    /// <summary>
    2829    /// Calculates a distance measure between two objects.
     
    4142    IComparer<T> GetDistanceComparer(T item);
    4243  }
     44
     45
     46  public interface IDistance : IItem {
     47    double Get(object x, object y);
     48    IComparer GetDistanceComparer(object item);
     49  }
    4350}
Note: See TracChangeset for help on using the changeset viewer.