Changeset 14927 for branches/PersistenceReintegration/HeuristicLab.Algorithms.DataAnalysis/3.4/TSNE/TSNEAlgorithm.cs
- Timestamp:
- 05/04/17 17:19:35 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceReintegration/HeuristicLab.Algorithms.DataAnalysis/3.4/TSNE/TSNEAlgorithm.cs
r14863 r14927 31 31 using HeuristicLab.Optimization; 32 32 using HeuristicLab.Parameters; 33 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;33 using HeuristicLab.Persistence; 34 34 using HeuristicLab.Problems.DataAnalysis; 35 35 using HeuristicLab.Random; … … 43 43 "dimensional space to allow visual cluster identification.")] 44 44 [Creatable(CreatableAttribute.Categories.DataAnalysis, Priority = 100)] 45 [Storable Class]45 [StorableType("d2c00bc0-ece7-40f0-aac3-4ddfa0ec2697")] 46 46 public sealed class TSNEAlgorithm : BasicAlgorithm { 47 47 public override bool SupportsPause { … … 198 198 199 199 private TSNEAlgorithm(TSNEAlgorithm original, Cloner cloner) : base(original, cloner) { 200 if (original.dataRowNames!=null)201 this.dataRowNames = new Dictionary<string, List<int>>(original.dataRowNames);200 if (original.dataRowNames != null) 201 this.dataRowNames = new Dictionary<string, List<int>>(original.dataRowNames); 202 202 if (original.dataRows != null) 203 203 this.dataRows = original.dataRows.ToDictionary(kvp => kvp.Key, kvp => cloner.Clone(kvp.Value));
Note: See TracChangeset
for help on using the changeset viewer.