Changeset 16640 for branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/Clustering
- Timestamp:
- 02/28/19 17:42:10 (6 years ago)
- Location:
- branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis
- Files:
-
- 6 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/Interfaces/Clustering/IClusteringModel.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 25 25 namespace HeuristicLab.Problems.DataAnalysis { 26 [StorableType(" 42B664EE-FB1A-4A2C-9067-6650C790DFCC")]26 [StorableType("1aab7e19-317f-47e0-acc7-b0538e572d8e")] 27 27 public interface IClusteringModel : IDataAnalysisModel { 28 28 IEnumerable<int> GetClusterValues(IDataset dataset, IEnumerable<int> rows); -
branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/Clustering/IClusteringProblem.cs
r16628 r16640 2 2 #region License Information 3 3 /* HeuristicLab 4 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)4 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 5 5 * 6 6 * This file is part of HeuristicLab. … … 22 22 23 23 namespace HeuristicLab.Problems.DataAnalysis { 24 [StorableType(" 4C6FB508-146E-4252-826B-0BD386AAD6BB")]24 [StorableType("fc7456d2-3892-4a7b-a77a-b7a0828d2530")] 25 25 public interface IClusteringProblem : IDataAnalysisProblem<IClusteringProblemData> { 26 26 } -
branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/Clustering/IClusteringProblemData.cs
r16628 r16640 2 2 #region License Information 3 3 /* HeuristicLab 4 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)4 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 5 5 * 6 6 * This file is part of HeuristicLab. … … 22 22 23 23 namespace HeuristicLab.Problems.DataAnalysis { 24 [StorableType(" 9B74FB18-0B3E-4251-BE43-024708970E77")]24 [StorableType("e39aa6c0-d6c6-491d-88cc-de05c6503314")] 25 25 public interface IClusteringProblemData : IDataAnalysisProblemData { 26 26 } -
branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/Clustering/IClusteringSolution.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 25 25 namespace HeuristicLab.Problems.DataAnalysis { 26 [StorableType(" 45FB42B8-490B-465E-8887-CF0ED01329B2")]26 [StorableType("dbb9226f-312d-4ee2-a6cc-b74cc6ab5cc0")] 27 27 public interface IClusteringSolution : IDataAnalysisSolution { 28 28 new IClusteringModel Model { get; }
Note: See TracChangeset
for help on using the changeset viewer.