Free cookie consent management tool by TermsFeed Policy Generator

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

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

Changed dispatcher to configure algorithms to use only the allowed input variables and changed dispatching to dispatch deterministic algorithms again when the input variable set is different.

#676 (Cockpit for the CEDMA Server to control algorithm settings)

File size: 3.7 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.SuspendLayout();
31      //
32      // targetVariableList
33      //
34      this.targetVariableList.FormattingEnabled = true;
35      this.targetVariableList.Location = new System.Drawing.Point(3, 16);
36      this.targetVariableList.Name = "targetVariableList";
37      this.targetVariableList.Size = new System.Drawing.Size(171, 409);
38      this.targetVariableList.TabIndex = 0;
39      this.targetVariableList.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.targetVariableList_ItemCheck);
40      //
41      // inputVariableList
42      //
43      this.inputVariableList.FormattingEnabled = true;
44      this.inputVariableList.Location = new System.Drawing.Point(194, 16);
45      this.inputVariableList.Name = "inputVariableList";
46      this.inputVariableList.Size = new System.Drawing.Size(170, 409);
47      this.inputVariableList.TabIndex = 1;
48      this.inputVariableList.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.inputVariableList_ItemCheck);
49      //
50      // targetVariablesLabel
51      //
52      this.targetVariablesLabel.AutoSize = true;
53      this.targetVariablesLabel.Location = new System.Drawing.Point(3, 0);
54      this.targetVariablesLabel.Name = "targetVariablesLabel";
55      this.targetVariablesLabel.Size = new System.Drawing.Size(86, 13);
56      this.targetVariablesLabel.TabIndex = 2;
57      this.targetVariablesLabel.Text = "Target variables:";
58      //
59      // inputVariablesLabel
60      //
61      this.inputVariablesLabel.AutoSize = true;
62      this.inputVariablesLabel.Location = new System.Drawing.Point(191, 0);
63      this.inputVariablesLabel.Name = "inputVariablesLabel";
64      this.inputVariablesLabel.Size = new System.Drawing.Size(79, 13);
65      this.inputVariablesLabel.TabIndex = 3;
66      this.inputVariablesLabel.Text = "Input variables:";
67      //
68      // DispatcherView
69      //
70      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
71      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
72      this.Controls.Add(this.inputVariablesLabel);
73      this.Controls.Add(this.targetVariablesLabel);
74      this.Controls.Add(this.inputVariableList);
75      this.Controls.Add(this.targetVariableList);
76      this.Name = "DispatcherView";
77      this.Size = new System.Drawing.Size(429, 482);
78      this.ResumeLayout(false);
79      this.PerformLayout();
80
81    }
82
83    #endregion
84
85    private System.Windows.Forms.CheckedListBox targetVariableList;
86    private System.Windows.Forms.CheckedListBox inputVariableList;
87    private System.Windows.Forms.Label targetVariablesLabel;
88    private System.Windows.Forms.Label inputVariablesLabel;
89  }
90}
Note: See TracBrowser for help on using the repository browser.