Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/07/10 10:23:58 (13 years ago)
Author:
mkommend
Message:

Added new symbols for GP (ticket #1256).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/GP.Symbols (TimeLag, Diff, Integral)/HeuristicLab.Problems.DataAnalysis.Views/3.3/Symbolic/Symbols/TimeLagView.cs

    r5026 r5051  
    2222using System;
    2323using System.Windows.Forms;
     24using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views;
    2425using HeuristicLab.MainForm;
    2526using HeuristicLab.MainForm.WindowsForms;
    2627using HeuristicLab.Problems.DataAnalysis.Symbolic.Symbols;
    27 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views;
    2828
    2929namespace HeuristicLab.Problems.DataAnalysis.Views.Symbolic.Symbols {
    30   [View("TimeLag View")]
    31   [Content(typeof(TimeLag), true)]
    32   public partial class TimeLagView : SymbolView {
    33     public new TimeLag Content {
    34       get { return (TimeLag)base.Content; }
     30  [View("LaggedSymbol View")]
     31  [Content(typeof(LaggedSymbol), true)]
     32  public partial class LaggedSymbolView : SymbolView {
     33    public new LaggedSymbol Content {
     34      get { return (LaggedSymbol)base.Content; }
    3535      set { base.Content = value; }
    3636    }
    3737
    38     public TimeLagView() {
     38    public LaggedSymbolView() {
    3939      InitializeComponent();
    4040    }
Note: See TracChangeset for help on using the changeset viewer.