Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/07/16 10:18:05 (8 years ago)
Author:
ascheibe
Message:

#2582 created branch for Hive Web Job Manager

Location:
branches/WebJobManager
Files:
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/WebJobManager/HeuristicLab.Algorithms.DataAnalysis/3.4/kMeans/KMeansClusteringModel.cs

    r12509 r13656  
    2121
    2222using System.Collections.Generic;
    23 using System.Drawing;
    2423using System.Linq;
    2524using HeuristicLab.Common;
     
    3534  [Item("KMeansClusteringModel", "Represents a k-Means clustering model.")]
    3635  public sealed class KMeansClusteringModel : NamedItem, IClusteringModel {
    37     public static new Image StaticItemImage {
    38       get { return HeuristicLab.Common.Resources.VSImageLibrary.Function; }
    39     }
     36
    4037
    4138    [Storable]
    4239    private string[] allowedInputVariables;
    43     public IEnumerable<string> AllowedInputVariables {
     40    public IEnumerable<string> AllowedInputVariables
     41    {
    4442      get { return allowedInputVariables; }
    4543    }
    4644    [Storable]
    4745    private List<double[]> centers;
    48     public IEnumerable<double[]> Centers {
    49       get {
     46    public IEnumerable<double[]> Centers
     47    {
     48      get
     49      {
    5050        return centers.Select(x => (double[])x.Clone());
    5151      }
Note: See TracChangeset for help on using the changeset viewer.