Free cookie consent management tool by TermsFeed Policy Generator

source: branches/CEDMA-Refactoring-Ticket419/HeuristicLab.GP.StructureIdentification.TimeSeries/OffspringSelectionGpEditor.cs @ 1262

Last change on this file since 1262 was 1262, checked in by gkronber, 15 years ago

Fixed a few issues in persistence of hard-coded GP algorithms. #224 (Simple frontend for GP for non-expert users (similar to HeurisicLab.SGA))

File size: 790 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.ComponentModel;
4using System.Drawing;
5using System.Data;
6using System.Linq;
7using System.Text;
8using System.Windows.Forms;
9
10namespace HeuristicLab.GP.StructureIdentification.TimeSeries {
11  public partial class OffspringSelectionGpEditor : HeuristicLab.GP.StructureIdentification.OffspringSelectionGpEditor {
12    public OffspringSelectionGpEditor() {
13      InitializeComponent();
14    }
15    public OffspringSelectionGpEditor(OffspringSelectionGP osgp)
16      : this() {
17      OffspringSelectionGP = osgp;
18    }
19
20    protected override void SetDataBinding() {
21      base.SetDataBinding();     
22      autoregressionCheckbox.DataBindings.Add("Checked", OffspringSelectionGP, "Autoregressive");
23    }
24  }
25}
Note: See TracBrowser for help on using the repository browser.