Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/06/10 10:28:34 (14 years ago)
Author:
mkommend
Message:

Added branched projects for new GP symbols (ticket #1256).

Location:
branches/GP.Symbols (TimeLag, Diff, Integral)
Files:
1 edited
3 copied

Legend:

Unmodified
Added
Removed
  • branches/GP.Symbols (TimeLag, Diff, Integral)

    • Property svn:ignore set to
      GP.Symbols.suo
  • branches/GP.Symbols (TimeLag, Diff, Integral)/HeuristicLab.Problems.DataAnalysis.Views/3.3/Symbolic/Symbols/TimeLagView.Designer.cs

    r5005 r5026  
    2121
    2222namespace HeuristicLab.Problems.DataAnalysis.Views.Symbolic.Symbols {
    23   partial class LaggedVariableView {
     23  partial class TimeLagView {
    2424    /// <summary>
    2525    /// Required designer variable.
     
    5151      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
    5252      this.SuspendLayout();
    53       //
    54       // initializationGroupBox
    55       //
    56       this.initializationGroupBox.Location = new System.Drawing.Point(3, 131);
    57       this.initializationGroupBox.Size = new System.Drawing.Size(399, 73);
    58       //
    59       // mutationGroupBox
    60       //
    61       this.mutationGroupBox.Location = new System.Drawing.Point(6, 210);
    62       this.mutationGroupBox.Size = new System.Drawing.Size(396, 73);
    6353      //
    6454      // initialFrequencyLabel
     
    117107      this.maxTimeOffsetTextBox.TextChanged += new System.EventHandler(this.maxTimeOffsetTextBox_TextChanged);
    118108      //
    119       // LaggedVariableView
     109      // TimeLagView
    120110      //
    121111      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     
    125115      this.Controls.Add(this.maxTimeOffsetLabel);
    126116      this.Controls.Add(this.minTimeOffsetLabel);
    127       this.Name = "LaggedVariableView";
    128       this.Size = new System.Drawing.Size(408, 292);
    129       this.Controls.SetChildIndex(this.initializationGroupBox, 0);
     117      this.Name = "TimeLagView";
     118      this.Size = new System.Drawing.Size(408, 141);
    130119      this.Controls.SetChildIndex(this.initialFrequencyTextBox, 0);
    131120      this.Controls.SetChildIndex(this.initialFrequencyLabel, 0);
     
    134123      this.Controls.SetChildIndex(this.nameTextBox, 0);
    135124      this.Controls.SetChildIndex(this.descriptionTextBox, 0);
    136       this.Controls.SetChildIndex(this.mutationGroupBox, 0);
    137125      this.Controls.SetChildIndex(this.minTimeOffsetLabel, 0);
    138126      this.Controls.SetChildIndex(this.maxTimeOffsetLabel, 0);
  • branches/GP.Symbols (TimeLag, Diff, Integral)/HeuristicLab.Problems.DataAnalysis.Views/3.3/Symbolic/Symbols/TimeLagView.cs

    r5005 r5026  
    2525using HeuristicLab.MainForm.WindowsForms;
    2626using HeuristicLab.Problems.DataAnalysis.Symbolic.Symbols;
     27using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views;
    2728
    2829namespace HeuristicLab.Problems.DataAnalysis.Views.Symbolic.Symbols {
    29   [View("LaggedVariable View")]
    30   [Content(typeof(LaggedVariable), true)]
    31   public partial class LaggedVariableView : VariableView {
    32     public new LaggedVariable Content {
    33       get { return (LaggedVariable)base.Content; }
     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; }
    3435      set { base.Content = value; }
    3536    }
    3637
    37     public LaggedVariableView() {
     38    public TimeLagView() {
    3839      InitializeComponent();
    3940    }
Note: See TracChangeset for help on using the changeset viewer.