Changeset 16640 for branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Clustering
- Timestamp:
- 02/28/19 17:42:10 (6 years ago)
- Location:
- branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis
- Property svn:mergeinfo changed
-
branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis/3.4
- Property svn:mergeinfo changed
-
branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Clustering/ClusteringProblem.cs
r16628 r16640 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 HeuristicLab.Common; 23 23 using HeuristicLab.Core; 24 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;24 using HEAL.Attic; 25 25 using HEAL.Attic; 26 26 27 27 namespace HeuristicLab.Problems.DataAnalysis { 28 [StorableType(" 04AEF84F-0D3F-4D31-A497-7622F62E129A")]28 [StorableType("CB64B930-3C95-4663-B583-712B42E33712")] 29 29 [Item("Clustering Problem", "A general clustering problem.")] 30 30 public class ClusteringProblem : DataAnalysisProblem<IClusteringProblemData>, IClusteringProblem { -
branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Clustering/ClusteringProblemData.cs
r16628 r16640 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. … … 24 24 using HeuristicLab.Common; 25 25 using HeuristicLab.Core; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Attic; 27 27 using HEAL.Attic; 28 28 29 29 namespace HeuristicLab.Problems.DataAnalysis { 30 [StorableType(" 991D1318-FE86-45A6-88BD-948D3376451E")]30 [StorableType("B74A767A-86ED-4B0E-BC01-82A4509CB81B")] 31 31 [Item("ClusteringProblemData", "Represents an item containing all data defining a clustering problem.")] 32 32 public sealed class ClusteringProblemData : DataAnalysisProblemData, IClusteringProblemData, IStorableContent { -
branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Clustering/ClusteringSolution.cs
r16628 r16640 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. … … 23 23 using System.Linq; 24 24 using HeuristicLab.Common; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Attic; 26 26 using HEAL.Attic; 27 27 … … 30 30 /// Represents a clustering data analysis solution 31 31 /// </summary> 32 [StorableType(" D9E11225-A1C7-4BD3-9FAE-FCECC8AA9D26")]32 [StorableType("51241A39-F5C6-4DC8-A27A-83875FFCB51B")] 33 33 public class ClusteringSolution : DataAnalysisSolution, IClusteringSolution { 34 34
Note: See TracChangeset
for help on using the changeset viewer.