Last change
on this file since 3257 was
3253,
checked in by gkronber, 15 years ago
|
Implemented basic framework for symbolic regression problems for HL 3.3. #938 (Data types and operators for regression problems)
|
File size:
1.2 KB
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.ComponentModel;
|
---|
4 | using System.Data;
|
---|
5 | using System.Drawing;
|
---|
6 | using System.Text;
|
---|
7 | using System.Windows.Forms;
|
---|
8 | using HeuristicLab.Optimization.Views;
|
---|
9 | using HeuristicLab.MainForm;
|
---|
10 |
|
---|
11 | namespace HeuristicLab.Problems.DataAnalysis.Regression.Symbolic {
|
---|
12 | [View("SymbolicRegressionProblem View")]
|
---|
13 | [Content(typeof(SymbolicRegressionProblem), true)]
|
---|
14 | public partial class SymbolicRegressionProblemView : ProblemView {
|
---|
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.