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
Line 
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
11namespace HeuristicLab.Problems.DataAnalysis.Regression.Symbolic {
12  [View("SymbolicRegressionProblem View")]
13  [Content(typeof(SymbolicRegressionProblem), true)]
14  public partial class SymbolicRegressionProblemView : RegressionProblemView {
15    public new SymbolicRegressionProblem Content {
16      get { return (SymbolicRegressionProblem)base.Content; }
17      set { base.Content = value; }
18    }
19
20    /// <summary>
21    /// Initializes a new instance of <see cref="SymbolicRegressionProblemView"/>.
22    /// </summary>
23    public SymbolicRegressionProblemView() {
24      InitializeComponent();
25    }
26    /// <summary>
27    /// Intializes a new instance of <see cref="SymbolicRegressionProblemView"/> with the given <paramref name="item"/>.
28    /// </summary>
29    /// <param name="item">The item that should be displayed.</param>
30    public SymbolicRegressionProblemView(SymbolicRegressionProblem content)
31      : this() {
32      Content = content;
33    }
34  }
35}
Note: See TracBrowser for help on using the repository browser.