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).

Location:
branches/GP.Symbols (TimeLag, Diff, Integral)/HeuristicLab.Problems.DataAnalysis.Views/3.3
Files:
3 edited

Legend:

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

    r5026 r5051  
    256256    <Compile Include="Symbolic\Symbols\LaggedVariableView.Designer.cs">
    257257      <DependentUpon>LaggedVariableView.cs</DependentUpon>
     258    </Compile>
     259    <Compile Include="Symbolic\Symbols\TimeLagView.cs">
     260      <SubType>UserControl</SubType>
     261    </Compile>
     262    <Compile Include="Symbolic\Symbols\TimeLagView.Designer.cs">
     263      <DependentUpon>TimeLagView.cs</DependentUpon>
    258264    </Compile>
    259265    <Compile Include="Symbolic\Symbols\VariableView.cs">
  • branches/GP.Symbols (TimeLag, Diff, Integral)/HeuristicLab.Problems.DataAnalysis.Views/3.3/Symbolic/Symbols/TimeLagView.Designer.cs

    r5026 r5051  
    2121
    2222namespace HeuristicLab.Problems.DataAnalysis.Views.Symbolic.Symbols {
    23   partial class TimeLagView {
     23  partial class LaggedSymbolView {
    2424    /// <summary>
    2525    /// Required designer variable.
  • 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.