Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/10/11 10:00:09 (13 years ago)
Author:
gkronber
Message:

#1418 Implemented classes for classification based on a discriminant function and thresholds and implemented interfaces and base classes for clustering.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataAnalysis Refactoring/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/SymbolicDataAnalysisModel.cs

    r5624 r5649  
    3131using HeuristicLab.Optimization;
    3232using System;
     33using System.Drawing;
    3334
    3435namespace HeuristicLab.Problems.DataAnalysis.Symbolic {
     
    3839  [StorableClass]
    3940  public abstract class SymbolicDataAnalysisModel : NamedItem, ISymbolicDataAnalysisModel {
     41    public override Image ItemImage {
     42      get { return HeuristicLab.Common.Resources.VSImageLibrary.Function; }
     43    }
     44
    4045    #region properties
    4146
     
    6368    public SymbolicDataAnalysisModel(ISymbolicExpressionTree tree, ISymbolicDataAnalysisExpressionTreeInterpreter interpreter)
    6469      : base() {
     70      this.name = ItemName;
     71      this.description = ItemDescription;
    6572      this.symbolicExpressionTree = tree;
    6673      this.interpreter = interpreter;
Note: See TracChangeset for help on using the changeset viewer.