Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.DataAnalysis.Regression/3.3/Symbolic/SymbolicRegressionProblemView.cs @ 3442

Last change on this file since 3442 was 3264, checked in by gkronber, 14 years ago

Implemented import of CSV files for regression problems. #938 (Data types and operators for regression problems)

File size: 1.2 KB
RevLine 
[3223]1using System;
2using System.Collections.Generic;
3using System.ComponentModel;
4using System.Data;
5using System.Drawing;
6using System.Text;
7using System.Windows.Forms;
8using HeuristicLab.Optimization.Views;
9using HeuristicLab.MainForm;
10
[3253]11namespace HeuristicLab.Problems.DataAnalysis.Regression.Symbolic {
12  [View("SymbolicRegressionProblem View")]
13  [Content(typeof(SymbolicRegressionProblem), true)]
[3264]14  public partial class SymbolicRegressionProblemView : RegressionProblemView {
[3253]15    public new SymbolicRegressionProblem Content {
16      get { return (SymbolicRegressionProblem)base.Content; }
[3223]17      set { base.Content = value; }
18    }
19
20    /// <summary>
[3253]21    /// Initializes a new instance of <see cref="SymbolicRegressionProblemView"/>.
[3223]22    /// </summary>
[3253]23    public SymbolicRegressionProblemView() {
[3223]24      InitializeComponent();
25    }
26    /// <summary>
[3253]27    /// Intializes a new instance of <see cref="SymbolicRegressionProblemView"/> with the given <paramref name="item"/>.
[3223]28    /// </summary>
29    /// <param name="item">The item that should be displayed.</param>
[3253]30    public SymbolicRegressionProblemView(SymbolicRegressionProblem content)
[3223]31      : this() {
32      Content = content;
33    }
34  }
35}
Note: See TracBrowser for help on using the repository browser.