Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.CEDMA.Server/3.3/DispatcherView.Designer.cs @ 2471

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

Fixed bugs in CEDMA cockpit:

  • Runs were started for target variables that are turned off
  • Runs were started for deterministic algorithms with the same setting (when using time series settings)

#676 Cockpit for the CEDMA Server to control algorithm settings

File size: 23.6 KB
Line 
1namespace HeuristicLab.CEDMA.Server {
2  partial class DispatcherView {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Component Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      this.targetVariableList = new System.Windows.Forms.CheckedListBox();
27      this.inputVariableList = new System.Windows.Forms.CheckedListBox();
28      this.targetVariablesLabel = new System.Windows.Forms.Label();
29      this.inputVariablesLabel = new System.Windows.Forms.Label();
30      this.splitContainer = new System.Windows.Forms.SplitContainer();
31      this.learningTaskGroupBox = new System.Windows.Forms.GroupBox();
32      this.setAlgorithmDefault = new System.Windows.Forms.Button();
33      this.autoregressiveLabel = new System.Windows.Forms.Label();
34      this.classificationRadioButton = new System.Windows.Forms.RadioButton();
35      this.algorithmsListBox = new System.Windows.Forms.CheckedListBox();
36      this.minTimeOffsetLabel = new System.Windows.Forms.Label();
37      this.minTimeOffsetTextBox = new System.Windows.Forms.TextBox();
38      this.maxTimeOffsetLabel = new System.Windows.Forms.Label();
39      this.regressionRadioButton = new System.Windows.Forms.RadioButton();
40      this.maxTimeOffsetTextBox = new System.Windows.Forms.TextBox();
41      this.timeSeriesRadioButton = new System.Windows.Forms.RadioButton();
42      this.autoregressiveCheckBox = new System.Windows.Forms.CheckBox();
43      this.partitioningGroupBox = new System.Windows.Forms.GroupBox();
44      this.validationSamplesEndTextBox = new System.Windows.Forms.TextBox();
45      this.trainingLabel = new System.Windows.Forms.Label();
46      this.trainingSamplesStartTextBox = new System.Windows.Forms.TextBox();
47      this.trainingSamplesEndTextBox = new System.Windows.Forms.TextBox();
48      this.validationLabel = new System.Windows.Forms.Label();
49      this.testSamplesEndTextBox = new System.Windows.Forms.TextBox();
50      this.validationSamplesStartTextBox = new System.Windows.Forms.TextBox();
51      this.testSamplesStartTextBox = new System.Windows.Forms.TextBox();
52      this.testLabel = new System.Windows.Forms.Label();
53      this.setAllButton = new System.Windows.Forms.Button();
54      this.splitContainer.Panel1.SuspendLayout();
55      this.splitContainer.Panel2.SuspendLayout();
56      this.splitContainer.SuspendLayout();
57      this.learningTaskGroupBox.SuspendLayout();
58      this.partitioningGroupBox.SuspendLayout();
59      this.SuspendLayout();
60      //
61      // targetVariableList
62      //
63      this.targetVariableList.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
64                  | System.Windows.Forms.AnchorStyles.Left)
65                  | System.Windows.Forms.AnchorStyles.Right)));
66      this.targetVariableList.FormattingEnabled = true;
67      this.targetVariableList.HorizontalScrollbar = true;
68      this.targetVariableList.Location = new System.Drawing.Point(3, 16);
69      this.targetVariableList.Name = "targetVariableList";
70      this.targetVariableList.Size = new System.Drawing.Size(346, 214);
71      this.targetVariableList.TabIndex = 0;
72      this.targetVariableList.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.targetVariableList_ItemCheck);
73      this.targetVariableList.SelectedValueChanged += new System.EventHandler(this.targetVariableList_SelectedValueChanged);
74      //
75      // inputVariableList
76      //
77      this.inputVariableList.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
78                  | System.Windows.Forms.AnchorStyles.Left)
79                  | System.Windows.Forms.AnchorStyles.Right)));
80      this.inputVariableList.FormattingEnabled = true;
81      this.inputVariableList.HorizontalScrollbar = true;
82      this.inputVariableList.Location = new System.Drawing.Point(2, 16);
83      this.inputVariableList.Name = "inputVariableList";
84      this.inputVariableList.Size = new System.Drawing.Size(393, 634);
85      this.inputVariableList.TabIndex = 1;
86      this.inputVariableList.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.inputVariableList_ItemCheck);
87      //
88      // targetVariablesLabel
89      //
90      this.targetVariablesLabel.AutoSize = true;
91      this.targetVariablesLabel.Location = new System.Drawing.Point(0, 0);
92      this.targetVariablesLabel.Name = "targetVariablesLabel";
93      this.targetVariablesLabel.Size = new System.Drawing.Size(86, 13);
94      this.targetVariablesLabel.TabIndex = 2;
95      this.targetVariablesLabel.Text = "Target variables:";
96      //
97      // inputVariablesLabel
98      //
99      this.inputVariablesLabel.AutoSize = true;
100      this.inputVariablesLabel.Location = new System.Drawing.Point(3, 0);
101      this.inputVariablesLabel.Name = "inputVariablesLabel";
102      this.inputVariablesLabel.Size = new System.Drawing.Size(79, 13);
103      this.inputVariablesLabel.TabIndex = 3;
104      this.inputVariablesLabel.Text = "Input variables:";
105      //
106      // splitContainer
107      //
108      this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
109      this.splitContainer.Location = new System.Drawing.Point(0, 0);
110      this.splitContainer.Name = "splitContainer";
111      //
112      // splitContainer.Panel1
113      //
114      this.splitContainer.Panel1.Controls.Add(this.learningTaskGroupBox);
115      this.splitContainer.Panel1.Controls.Add(this.partitioningGroupBox);
116      this.splitContainer.Panel1.Controls.Add(this.targetVariablesLabel);
117      this.splitContainer.Panel1.Controls.Add(this.targetVariableList);
118      //
119      // splitContainer.Panel2
120      //
121      this.splitContainer.Panel2.Controls.Add(this.setAllButton);
122      this.splitContainer.Panel2.Controls.Add(this.inputVariablesLabel);
123      this.splitContainer.Panel2.Controls.Add(this.inputVariableList);
124      this.splitContainer.Size = new System.Drawing.Size(754, 688);
125      this.splitContainer.SplitterDistance = 355;
126      this.splitContainer.SplitterWidth = 1;
127      this.splitContainer.TabIndex = 4;
128      //
129      // learningTaskGroupBox
130      //
131      this.learningTaskGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
132      this.learningTaskGroupBox.Controls.Add(this.setAlgorithmDefault);
133      this.learningTaskGroupBox.Controls.Add(this.autoregressiveLabel);
134      this.learningTaskGroupBox.Controls.Add(this.classificationRadioButton);
135      this.learningTaskGroupBox.Controls.Add(this.algorithmsListBox);
136      this.learningTaskGroupBox.Controls.Add(this.minTimeOffsetLabel);
137      this.learningTaskGroupBox.Controls.Add(this.minTimeOffsetTextBox);
138      this.learningTaskGroupBox.Controls.Add(this.maxTimeOffsetLabel);
139      this.learningTaskGroupBox.Controls.Add(this.regressionRadioButton);
140      this.learningTaskGroupBox.Controls.Add(this.maxTimeOffsetTextBox);
141      this.learningTaskGroupBox.Controls.Add(this.timeSeriesRadioButton);
142      this.learningTaskGroupBox.Controls.Add(this.autoregressiveCheckBox);
143      this.learningTaskGroupBox.Enabled = false;
144      this.learningTaskGroupBox.Location = new System.Drawing.Point(6, 236);
145      this.learningTaskGroupBox.Name = "learningTaskGroupBox";
146      this.learningTaskGroupBox.Size = new System.Drawing.Size(343, 321);
147      this.learningTaskGroupBox.TabIndex = 36;
148      this.learningTaskGroupBox.TabStop = false;
149      this.learningTaskGroupBox.Text = "Learning task";
150      //
151      // setAlgorithmDefault
152      //
153      this.setAlgorithmDefault.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
154      this.setAlgorithmDefault.Location = new System.Drawing.Point(6, 292);
155      this.setAlgorithmDefault.Name = "setAlgorithmDefault";
156      this.setAlgorithmDefault.Size = new System.Drawing.Size(96, 23);
157      this.setAlgorithmDefault.TabIndex = 36;
158      this.setAlgorithmDefault.Text = "Use as default";
159      this.setAlgorithmDefault.UseVisualStyleBackColor = true;
160      this.setAlgorithmDefault.Click += new System.EventHandler(this.setAlgorithmDefault_Click);
161      //
162      // autoregressiveLabel
163      //
164      this.autoregressiveLabel.AutoSize = true;
165      this.autoregressiveLabel.Enabled = false;
166      this.autoregressiveLabel.Location = new System.Drawing.Point(45, 83);
167      this.autoregressiveLabel.Name = "autoregressiveLabel";
168      this.autoregressiveLabel.Size = new System.Drawing.Size(80, 13);
169      this.autoregressiveLabel.TabIndex = 35;
170      this.autoregressiveLabel.Text = "Autoregressive:";
171      //
172      // classificationRadioButton
173      //
174      this.classificationRadioButton.AutoSize = true;
175      this.classificationRadioButton.Location = new System.Drawing.Point(6, 16);
176      this.classificationRadioButton.Name = "classificationRadioButton";
177      this.classificationRadioButton.Size = new System.Drawing.Size(86, 17);
178      this.classificationRadioButton.TabIndex = 28;
179      this.classificationRadioButton.Text = "Classification";
180      this.classificationRadioButton.UseVisualStyleBackColor = true;
181      this.classificationRadioButton.CheckedChanged += new System.EventHandler(this.radioButton_CheckedChanged);
182      //
183      // algorithmsListBox
184      //
185      this.algorithmsListBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
186                  | System.Windows.Forms.AnchorStyles.Left)
187                  | System.Windows.Forms.AnchorStyles.Right)));
188      this.algorithmsListBox.Enabled = false;
189      this.algorithmsListBox.FormattingEnabled = true;
190      this.algorithmsListBox.HorizontalScrollbar = true;
191      this.algorithmsListBox.Location = new System.Drawing.Point(6, 155);
192      this.algorithmsListBox.Name = "algorithmsListBox";
193      this.algorithmsListBox.Size = new System.Drawing.Size(331, 124);
194      this.algorithmsListBox.TabIndex = 4;
195      this.algorithmsListBox.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.algorithmsListBox_ItemCheck);
196      //
197      // minTimeOffsetLabel
198      //
199      this.minTimeOffsetLabel.AutoSize = true;
200      this.minTimeOffsetLabel.Enabled = false;
201      this.minTimeOffsetLabel.Location = new System.Drawing.Point(38, 106);
202      this.minTimeOffsetLabel.Name = "minTimeOffsetLabel";
203      this.minTimeOffsetLabel.Size = new System.Drawing.Size(87, 13);
204      this.minTimeOffsetLabel.TabIndex = 31;
205      this.minTimeOffsetLabel.Text = "Min. Time Offset:";
206      //
207      // minTimeOffsetTextBox
208      //
209      this.minTimeOffsetTextBox.Enabled = false;
210      this.minTimeOffsetTextBox.Location = new System.Drawing.Point(131, 103);
211      this.minTimeOffsetTextBox.Name = "minTimeOffsetTextBox";
212      this.minTimeOffsetTextBox.Size = new System.Drawing.Size(96, 20);
213      this.minTimeOffsetTextBox.TabIndex = 32;
214      this.minTimeOffsetTextBox.Validated += new System.EventHandler(this.timeOffsetTextBox_Validated);
215      this.minTimeOffsetTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.timeOffsetTextBox_Validating);
216      //
217      // maxTimeOffsetLabel
218      //
219      this.maxTimeOffsetLabel.AutoSize = true;
220      this.maxTimeOffsetLabel.Enabled = false;
221      this.maxTimeOffsetLabel.Location = new System.Drawing.Point(35, 132);
222      this.maxTimeOffsetLabel.Name = "maxTimeOffsetLabel";
223      this.maxTimeOffsetLabel.Size = new System.Drawing.Size(90, 13);
224      this.maxTimeOffsetLabel.TabIndex = 33;
225      this.maxTimeOffsetLabel.Text = "Max. Time Offset:";
226      //
227      // regressionRadioButton
228      //
229      this.regressionRadioButton.AutoSize = true;
230      this.regressionRadioButton.Location = new System.Drawing.Point(6, 39);
231      this.regressionRadioButton.Name = "regressionRadioButton";
232      this.regressionRadioButton.Size = new System.Drawing.Size(78, 17);
233      this.regressionRadioButton.TabIndex = 29;
234      this.regressionRadioButton.Text = "Regression";
235      this.regressionRadioButton.UseVisualStyleBackColor = true;
236      this.regressionRadioButton.CheckedChanged += new System.EventHandler(this.radioButton_CheckedChanged);
237      //
238      // maxTimeOffsetTextBox
239      //
240      this.maxTimeOffsetTextBox.Enabled = false;
241      this.maxTimeOffsetTextBox.Location = new System.Drawing.Point(131, 129);
242      this.maxTimeOffsetTextBox.Name = "maxTimeOffsetTextBox";
243      this.maxTimeOffsetTextBox.Size = new System.Drawing.Size(96, 20);
244      this.maxTimeOffsetTextBox.TabIndex = 34;
245      this.maxTimeOffsetTextBox.Validated += new System.EventHandler(this.timeOffsetTextBox_Validated);
246      this.maxTimeOffsetTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.timeOffsetTextBox_Validating);
247      //
248      // timeSeriesRadioButton
249      //
250      this.timeSeriesRadioButton.AutoSize = true;
251      this.timeSeriesRadioButton.Location = new System.Drawing.Point(6, 62);
252      this.timeSeriesRadioButton.Name = "timeSeriesRadioButton";
253      this.timeSeriesRadioButton.Size = new System.Drawing.Size(119, 17);
254      this.timeSeriesRadioButton.TabIndex = 30;
255      this.timeSeriesRadioButton.Text = "Time series forecast";
256      this.timeSeriesRadioButton.UseVisualStyleBackColor = true;
257      this.timeSeriesRadioButton.CheckedChanged += new System.EventHandler(this.radioButton_CheckedChanged);
258      //
259      // autoregressiveCheckBox
260      //
261      this.autoregressiveCheckBox.Anchor = System.Windows.Forms.AnchorStyles.Top;
262      this.autoregressiveCheckBox.AutoSize = true;
263      this.autoregressiveCheckBox.Enabled = false;
264      this.autoregressiveCheckBox.Location = new System.Drawing.Point(139, 83);
265      this.autoregressiveCheckBox.Name = "autoregressiveCheckBox";
266      this.autoregressiveCheckBox.Size = new System.Drawing.Size(15, 14);
267      this.autoregressiveCheckBox.TabIndex = 22;
268      this.autoregressiveCheckBox.UseVisualStyleBackColor = true;
269      this.autoregressiveCheckBox.CheckedChanged += new System.EventHandler(this.autoregressiveCheckBox_CheckedChanged);
270      //
271      // partitioningGroupBox
272      //
273      this.partitioningGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
274      this.partitioningGroupBox.Controls.Add(this.validationSamplesEndTextBox);
275      this.partitioningGroupBox.Controls.Add(this.trainingLabel);
276      this.partitioningGroupBox.Controls.Add(this.trainingSamplesStartTextBox);
277      this.partitioningGroupBox.Controls.Add(this.trainingSamplesEndTextBox);
278      this.partitioningGroupBox.Controls.Add(this.validationLabel);
279      this.partitioningGroupBox.Controls.Add(this.testSamplesEndTextBox);
280      this.partitioningGroupBox.Controls.Add(this.validationSamplesStartTextBox);
281      this.partitioningGroupBox.Controls.Add(this.testSamplesStartTextBox);
282      this.partitioningGroupBox.Controls.Add(this.testLabel);
283      this.partitioningGroupBox.Enabled = false;
284      this.partitioningGroupBox.Location = new System.Drawing.Point(6, 563);
285      this.partitioningGroupBox.Name = "partitioningGroupBox";
286      this.partitioningGroupBox.Size = new System.Drawing.Size(343, 122);
287      this.partitioningGroupBox.TabIndex = 26;
288      this.partitioningGroupBox.TabStop = false;
289      this.partitioningGroupBox.Text = "Data set partitions:";
290      //
291      // validationSamplesEndTextBox
292      //
293      this.validationSamplesEndTextBox.Location = new System.Drawing.Point(221, 43);
294      this.validationSamplesEndTextBox.Name = "validationSamplesEndTextBox";
295      this.validationSamplesEndTextBox.Size = new System.Drawing.Size(96, 20);
296      this.validationSamplesEndTextBox.TabIndex = 13;
297      this.validationSamplesEndTextBox.Validated += new System.EventHandler(this.samplesTextBox_Validated);
298      this.validationSamplesEndTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.samplesTextBox_Validating);
299      //
300      // trainingLabel
301      //
302      this.trainingLabel.AutoSize = true;
303      this.trainingLabel.Location = new System.Drawing.Point(13, 20);
304      this.trainingLabel.Name = "trainingLabel";
305      this.trainingLabel.Size = new System.Drawing.Size(89, 13);
306      this.trainingLabel.TabIndex = 3;
307      this.trainingLabel.Text = "Training samples:";
308      //
309      // trainingSamplesStartTextBox
310      //
311      this.trainingSamplesStartTextBox.Location = new System.Drawing.Point(119, 17);
312      this.trainingSamplesStartTextBox.Name = "trainingSamplesStartTextBox";
313      this.trainingSamplesStartTextBox.Size = new System.Drawing.Size(96, 20);
314      this.trainingSamplesStartTextBox.TabIndex = 4;
315      this.trainingSamplesStartTextBox.Validated += new System.EventHandler(this.samplesTextBox_Validated);
316      this.trainingSamplesStartTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.samplesTextBox_Validating);
317      //
318      // trainingSamplesEndTextBox
319      //
320      this.trainingSamplesEndTextBox.Location = new System.Drawing.Point(221, 17);
321      this.trainingSamplesEndTextBox.Name = "trainingSamplesEndTextBox";
322      this.trainingSamplesEndTextBox.Size = new System.Drawing.Size(96, 20);
323      this.trainingSamplesEndTextBox.TabIndex = 10;
324      this.trainingSamplesEndTextBox.Validated += new System.EventHandler(this.samplesTextBox_Validated);
325      this.trainingSamplesEndTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.samplesTextBox_Validating);
326      //
327      // validationLabel
328      //
329      this.validationLabel.AutoSize = true;
330      this.validationLabel.Location = new System.Drawing.Point(5, 46);
331      this.validationLabel.Name = "validationLabel";
332      this.validationLabel.Size = new System.Drawing.Size(97, 13);
333      this.validationLabel.TabIndex = 11;
334      this.validationLabel.Text = "Validation samples:";
335      //
336      // testSamplesEndTextBox
337      //
338      this.testSamplesEndTextBox.Location = new System.Drawing.Point(221, 68);
339      this.testSamplesEndTextBox.Name = "testSamplesEndTextBox";
340      this.testSamplesEndTextBox.Size = new System.Drawing.Size(96, 20);
341      this.testSamplesEndTextBox.TabIndex = 16;
342      this.testSamplesEndTextBox.Validated += new System.EventHandler(this.samplesTextBox_Validated);
343      this.testSamplesEndTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.samplesTextBox_Validating);
344      //
345      // validationSamplesStartTextBox
346      //
347      this.validationSamplesStartTextBox.Location = new System.Drawing.Point(119, 43);
348      this.validationSamplesStartTextBox.Name = "validationSamplesStartTextBox";
349      this.validationSamplesStartTextBox.Size = new System.Drawing.Size(96, 20);
350      this.validationSamplesStartTextBox.TabIndex = 12;
351      this.validationSamplesStartTextBox.Validated += new System.EventHandler(this.samplesTextBox_Validated);
352      this.validationSamplesStartTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.samplesTextBox_Validating);
353      //
354      // testSamplesStartTextBox
355      //
356      this.testSamplesStartTextBox.Location = new System.Drawing.Point(119, 68);
357      this.testSamplesStartTextBox.Name = "testSamplesStartTextBox";
358      this.testSamplesStartTextBox.Size = new System.Drawing.Size(96, 20);
359      this.testSamplesStartTextBox.TabIndex = 15;
360      this.testSamplesStartTextBox.Validated += new System.EventHandler(this.samplesTextBox_Validated);
361      this.testSamplesStartTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.samplesTextBox_Validating);
362      //
363      // testLabel
364      //
365      this.testLabel.AutoSize = true;
366      this.testLabel.Location = new System.Drawing.Point(30, 71);
367      this.testLabel.Name = "testLabel";
368      this.testLabel.Size = new System.Drawing.Size(72, 13);
369      this.testLabel.TabIndex = 14;
370      this.testLabel.Text = "Test samples:";
371      //
372      // setAllButton
373      //
374      this.setAllButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
375      this.setAllButton.Location = new System.Drawing.Point(3, 662);
376      this.setAllButton.Name = "setAllButton";
377      this.setAllButton.Size = new System.Drawing.Size(91, 23);
378      this.setAllButton.TabIndex = 4;
379      this.setAllButton.Text = "Use as default";
380      this.setAllButton.UseVisualStyleBackColor = true;
381      this.setAllButton.Click += new System.EventHandler(this.setAllButton_Click);
382      //
383      // DispatcherView
384      //
385      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
386      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
387      this.Controls.Add(this.splitContainer);
388      this.Name = "DispatcherView";
389      this.Size = new System.Drawing.Size(754, 688);
390      this.splitContainer.Panel1.ResumeLayout(false);
391      this.splitContainer.Panel1.PerformLayout();
392      this.splitContainer.Panel2.ResumeLayout(false);
393      this.splitContainer.Panel2.PerformLayout();
394      this.splitContainer.ResumeLayout(false);
395      this.learningTaskGroupBox.ResumeLayout(false);
396      this.learningTaskGroupBox.PerformLayout();
397      this.partitioningGroupBox.ResumeLayout(false);
398      this.partitioningGroupBox.PerformLayout();
399      this.ResumeLayout(false);
400
401    }
402
403    #endregion
404
405    private System.Windows.Forms.CheckedListBox targetVariableList;
406    private System.Windows.Forms.CheckedListBox inputVariableList;
407    private System.Windows.Forms.Label targetVariablesLabel;
408    private System.Windows.Forms.Label inputVariablesLabel;
409    private System.Windows.Forms.SplitContainer splitContainer;
410    private System.Windows.Forms.Button setAllButton;
411    private System.Windows.Forms.CheckedListBox algorithmsListBox;
412    private System.Windows.Forms.GroupBox partitioningGroupBox;
413    private System.Windows.Forms.TextBox validationSamplesEndTextBox;
414    private System.Windows.Forms.Label trainingLabel;
415    private System.Windows.Forms.TextBox trainingSamplesStartTextBox;
416    private System.Windows.Forms.TextBox trainingSamplesEndTextBox;
417    private System.Windows.Forms.Label validationLabel;
418    private System.Windows.Forms.TextBox testSamplesEndTextBox;
419    private System.Windows.Forms.TextBox validationSamplesStartTextBox;
420    private System.Windows.Forms.TextBox testSamplesStartTextBox;
421    private System.Windows.Forms.Label testLabel;
422    private System.Windows.Forms.GroupBox learningTaskGroupBox;
423    private System.Windows.Forms.Label autoregressiveLabel;
424    private System.Windows.Forms.RadioButton classificationRadioButton;
425    private System.Windows.Forms.Label minTimeOffsetLabel;
426    private System.Windows.Forms.TextBox minTimeOffsetTextBox;
427    private System.Windows.Forms.Label maxTimeOffsetLabel;
428    private System.Windows.Forms.RadioButton regressionRadioButton;
429    private System.Windows.Forms.TextBox maxTimeOffsetTextBox;
430    private System.Windows.Forms.RadioButton timeSeriesRadioButton;
431    private System.Windows.Forms.CheckBox autoregressiveCheckBox;
432    private System.Windows.Forms.Button setAlgorithmDefault;
433  }
434}
Note: See TracBrowser for help on using the repository browser.