Changeset 16628 for branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/Clustering
- Timestamp:
- 02/28/19 12:41:36 (6 years ago)
- Location:
- branches/2971_named_intervals
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2971_named_intervals
-
Property
svn:ignore
set to
packages
-
Property
svn:ignore
set to
-
branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/Clustering/IClusteringModel.cs
r15583 r16628 21 21 22 22 using System.Collections.Generic; 23 using HEAL.Attic; 24 23 25 namespace HeuristicLab.Problems.DataAnalysis { 26 [StorableType("42B664EE-FB1A-4A2C-9067-6650C790DFCC")] 24 27 public interface IClusteringModel : IDataAnalysisModel { 25 28 IEnumerable<int> GetClusterValues(IDataset dataset, IEnumerable<int> rows); -
branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/Clustering/IClusteringProblem.cs
r15583 r16628 1 #region License Information 1 using HEAL.Attic; 2 #region License Information 2 3 /* HeuristicLab 3 4 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 21 22 22 23 namespace HeuristicLab.Problems.DataAnalysis { 24 [StorableType("4C6FB508-146E-4252-826B-0BD386AAD6BB")] 23 25 public interface IClusteringProblem : IDataAnalysisProblem<IClusteringProblemData> { 24 26 } -
branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/Clustering/IClusteringProblemData.cs
r15583 r16628 1 #region License Information 1 using HEAL.Attic; 2 #region License Information 2 3 /* HeuristicLab 3 4 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 21 22 22 23 namespace HeuristicLab.Problems.DataAnalysis { 24 [StorableType("9B74FB18-0B3E-4251-BE43-024708970E77")] 23 25 public interface IClusteringProblemData : IDataAnalysisProblemData { 24 26 } -
branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/Clustering/IClusteringSolution.cs
r15583 r16628 21 21 22 22 using System.Collections.Generic; 23 using HEAL.Attic; 24 23 25 namespace HeuristicLab.Problems.DataAnalysis { 26 [StorableType("45FB42B8-490B-465E-8887-CF0ED01329B2")] 24 27 public interface IClusteringSolution : IDataAnalysisSolution { 25 28 new IClusteringModel Model { get; }
Note: See TracChangeset
for help on using the changeset viewer.