- Timestamp:
- 03/27/17 15:15:23 (8 years ago)
- Location:
- branches/TSNE/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces/TSNEInterfaces
- Files:
-
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/TSNE/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces/TSNEInterfaces/ISpacePartitioningTree.cs
r14784 r14785 23 23 24 24 namespace HeuristicLab.Algorithms.DataAnalysis { 25 public interface IS PTree : IDeepCloneable {25 public interface ISpacePartitioningTree { 26 26 27 27 double[,] Data { set; } 28 28 int GetDepth(); 29 IS PTree GetParent();29 ISpacePartitioningTree GetParent(); 30 30 bool Insert(int newIndex); 31 31 void Subdivide(); -
branches/TSNE/HeuristicLab.Algorithms.DataAnalysis/3.4/Interfaces/TSNEInterfaces/IVantagePointTree.cs
r14784 r14785 24 24 25 25 namespace HeuristicLab.Algorithms.DataAnalysis { 26 public interface IVPTree<T> : IDeepCloneable { 27 void Create(IEnumerable<T> items); 28 void Search(T target, int k, out List<T> results, out List<double> distances); 26 public interface IVantagePointTree<T> { 27 void Search(T target, int k, out IList<T> results, out IList<double> distances); 29 28 } 30 29 }
Note: See TracChangeset
for help on using the changeset viewer.