Changeset 16723 for branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.DataAnalysis/3.4/TSNE/Distances/ManhattanDistance.cs
- Timestamp:
- 03/28/19 16:54:20 (6 years ago)
- Location:
- branches/2521_ProblemRefactoring
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring
- Property svn:mergeinfo changed
-
branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.DataAnalysis
- Property svn:mergeinfo changed
-
branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.DataAnalysis/3.4
- Property svn:mergeinfo changed
-
branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.DataAnalysis/3.4/TSNE/Distances/ManhattanDistance.cs
r15583 r16723 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 22 22 using System; 23 23 using System.Collections.Generic; 24 using System.Linq;25 24 using HeuristicLab.Common; 26 25 using HeuristicLab.Core; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Attic; 28 27 29 28 namespace HeuristicLab.Algorithms.DataAnalysis { 30 [Storable Class]29 [StorableType("65C04216-1441-41EE-91B7-A80B2AD5E332")] 31 30 [Item("ManhattanDistance", "A distance function that uses block distance")] 32 31 public class ManhattanDistance : DistanceBase<IEnumerable<double>> { 33 32 #region HLConstructors & Cloning 34 33 [StorableConstructor] 35 protected ManhattanDistance( bool deserializing) : base(deserializing) { }34 protected ManhattanDistance(StorableConstructorFlag _) : base(_) { } 36 35 [StorableHook(HookType.AfterDeserialization)] 37 36 private void AfterDeserialization() { }
Note: See TracChangeset
for help on using the changeset viewer.