Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.CEDMA.Server/3.3/ExecuterView.Designer.cs @ 2422

Last change on this file since 2422 was 2290, checked in by gkronber, 15 years ago
  • introduced a variablename to index mapping for SVM models (to make sure we can use the model for prediction in the model analyzer)
  • added support to enable and disable algorithms in the dispatcher and removed DispatcherBase
  • fixed bugs when calculating variable impacts and reading the final model of GP algorithms

#722 (IModel should provide a Predict() method to get predicted values for an input vector)

File size: 4.3 KB
Line 
1namespace HeuristicLab.CEDMA.Server {
2  partial class ExecuterView {
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.jobsList = new System.Windows.Forms.ListBox();
27      this.maxJobsLabel = new System.Windows.Forms.Label();
28      this.maxActiveJobs = new System.Windows.Forms.NumericUpDown();
29      this.finishedLabel = new System.Windows.Forms.Label();
30      this.finishedTextBox = new System.Windows.Forms.TextBox();
31      ((System.ComponentModel.ISupportInitialize)(this.maxActiveJobs)).BeginInit();
32      this.SuspendLayout();
33      //
34      // jobsList
35      //
36      this.jobsList.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
37                  | System.Windows.Forms.AnchorStyles.Left)
38                  | System.Windows.Forms.AnchorStyles.Right)));
39      this.jobsList.FormattingEnabled = true;
40      this.jobsList.Location = new System.Drawing.Point(3, 55);
41      this.jobsList.Name = "jobsList";
42      this.jobsList.Size = new System.Drawing.Size(327, 238);
43      this.jobsList.TabIndex = 0;
44      //
45      // maxJobsLabel
46      //
47      this.maxJobsLabel.AutoSize = true;
48      this.maxJobsLabel.Location = new System.Drawing.Point(5, 5);
49      this.maxJobsLabel.Name = "maxJobsLabel";
50      this.maxJobsLabel.Size = new System.Drawing.Size(87, 13);
51      this.maxJobsLabel.TabIndex = 1;
52      this.maxJobsLabel.Text = "Max. active jobs:";
53      //
54      // maxActiveJobs
55      //
56      this.maxActiveJobs.Location = new System.Drawing.Point(117, 3);
57      this.maxActiveJobs.Maximum = new decimal(new int[] {
58            200,
59            0,
60            0,
61            0});
62      this.maxActiveJobs.Name = "maxActiveJobs";
63      this.maxActiveJobs.Size = new System.Drawing.Size(120, 20);
64      this.maxActiveJobs.TabIndex = 2;
65      this.maxActiveJobs.ValueChanged += new System.EventHandler(this.maxActiveJobs_ValueChanged);
66      //
67      // finishedLabel
68      //
69      this.finishedLabel.AutoSize = true;
70      this.finishedLabel.Location = new System.Drawing.Point(5, 32);
71      this.finishedLabel.Name = "finishedLabel";
72      this.finishedLabel.Size = new System.Drawing.Size(106, 13);
73      this.finishedLabel.TabIndex = 3;
74      this.finishedLabel.Text = "Stored models (new):";
75      //
76      // finishedTextBox
77      //
78      this.finishedTextBox.Location = new System.Drawing.Point(117, 29);
79      this.finishedTextBox.Name = "finishedTextBox";
80      this.finishedTextBox.ReadOnly = true;
81      this.finishedTextBox.Size = new System.Drawing.Size(100, 20);
82      this.finishedTextBox.TabIndex = 4;
83      //
84      // ExecuterView
85      //
86      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
87      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
88      this.Controls.Add(this.finishedTextBox);
89      this.Controls.Add(this.finishedLabel);
90      this.Controls.Add(this.maxActiveJobs);
91      this.Controls.Add(this.maxJobsLabel);
92      this.Controls.Add(this.jobsList);
93      this.Name = "ExecuterView";
94      this.Size = new System.Drawing.Size(333, 294);
95      ((System.ComponentModel.ISupportInitialize)(this.maxActiveJobs)).EndInit();
96      this.ResumeLayout(false);
97      this.PerformLayout();
98
99    }
100
101    #endregion
102
103    private System.Windows.Forms.ListBox jobsList;
104    private System.Windows.Forms.Label maxJobsLabel;
105    private System.Windows.Forms.NumericUpDown maxActiveJobs;
106    private System.Windows.Forms.Label finishedLabel;
107    private System.Windows.Forms.TextBox finishedTextBox;
108  }
109}
Note: See TracBrowser for help on using the repository browser.