Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.Scheduling.Views/3.3/JobShopSchedulingProblemView.Designer.cs @ 8882

Last change on this file since 8882 was 8882, checked in by abeham, 11 years ago

#1329:

  • Added JSSPData class to problem instances
  • Added problem instance provider for some ORLIB JSSP instances (abz, ft, la01-20)
  • Adapted JSSP to load and export jssp problems
  • Adapted JSSP problem view to derive from ProblemView
  • Added static methods to MakespanEvaluator and MeanTardinessEvaluator
  • Fixed a bug in PRVUniformOnePositionManipulator
File size: 6.8 KB
Line 
1using HeuristicLab.Encodings.ScheduleEncoding.Views;
2namespace HeuristicLab.Problems.Scheduling.Views {
3  partial class JobShopSchedulingProblemView {
4    /// <summary>
5    /// Required designer variable.
6    /// </summary>
7    private System.ComponentModel.IContainer components = null;
8
9    /// <summary>
10    /// Clean up any resources being used.
11    /// </summary>
12    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
13    protected override void Dispose(bool disposing) {
14      if (disposing && (components != null)) {
15        components.Dispose();
16      }
17      base.Dispose(disposing);
18    }
19
20    #region Component Designer generated code
21
22    /// <summary>
23    /// Required method for Designer support - do not modify
24    /// the contents of this method with the code editor.
25    /// </summary>
26    private void InitializeComponent() {
27      this.problemTabControl = new System.Windows.Forms.TabControl();
28      this.problemTabPage = new System.Windows.Forms.TabPage();
29      this.visualizationTabPage = new System.Windows.Forms.TabPage();
30      this.ganttChart = new HeuristicLab.Encodings.ScheduleEncoding.Views.GanttChart();
31      ((System.ComponentModel.ISupportInitialize)(this.problemInstanceSplitContainer)).BeginInit();
32      this.problemInstanceSplitContainer.Panel1.SuspendLayout();
33      this.problemInstanceSplitContainer.Panel2.SuspendLayout();
34      this.problemInstanceSplitContainer.SuspendLayout();
35      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
36      this.problemTabControl.SuspendLayout();
37      this.problemTabPage.SuspendLayout();
38      this.visualizationTabPage.SuspendLayout();
39      this.SuspendLayout();
40      //
41      // problemInstanceSplitContainer
42      //
43      this.problemInstanceSplitContainer.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)));
44      this.problemInstanceSplitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
45      //
46      // problemInstanceSplitContainer.Panel2
47      //
48      this.problemInstanceSplitContainer.Panel2.Controls.Add(this.problemTabControl);
49      //
50      // ProblemInstanceConsumerViewHost
51      //
52      this.ProblemInstanceConsumerViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)));
53      this.ProblemInstanceConsumerViewHost.Dock = System.Windows.Forms.DockStyle.Fill;
54      this.ProblemInstanceConsumerViewHost.Location = new System.Drawing.Point(0, 0);
55      this.ProblemInstanceConsumerViewHost.Size = new System.Drawing.Size(511, 26);
56      //
57      // parameterCollectionView
58      //
59      this.parameterCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)));
60      this.parameterCollectionView.Dock = System.Windows.Forms.DockStyle.Fill;
61      this.parameterCollectionView.Location = new System.Drawing.Point(3, 3);
62      this.parameterCollectionView.Size = new System.Drawing.Size(491, 271);
63      //
64      // nameTextBox
65      //
66      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
67      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
68      this.nameTextBox.Size = new System.Drawing.Size(439, 20);
69      //
70      // infoLabel
71      //
72      this.infoLabel.Location = new System.Drawing.Point(492, 3);
73      //
74      // problemTabControl
75      //
76      this.problemTabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
77            | System.Windows.Forms.AnchorStyles.Left)
78            | System.Windows.Forms.AnchorStyles.Right)));
79      this.problemTabControl.Controls.Add(this.problemTabPage);
80      this.problemTabControl.Controls.Add(this.visualizationTabPage);
81      this.problemTabControl.Location = new System.Drawing.Point(3, 27);
82      this.problemTabControl.Name = "problemTabControl";
83      this.problemTabControl.SelectedIndex = 0;
84      this.problemTabControl.Size = new System.Drawing.Size(505, 303);
85      this.problemTabControl.TabIndex = 5;
86      //
87      // problemTabPage
88      //
89      this.problemTabPage.Controls.Add(this.parameterCollectionView);
90      this.problemTabPage.Location = new System.Drawing.Point(4, 22);
91      this.problemTabPage.Name = "problemTabPage";
92      this.problemTabPage.Padding = new System.Windows.Forms.Padding(3);
93      this.problemTabPage.Size = new System.Drawing.Size(497, 277);
94      this.problemTabPage.TabIndex = 0;
95      this.problemTabPage.Text = "Problem";
96      this.problemTabPage.UseVisualStyleBackColor = true;
97      //
98      // visualizationTabPage
99      //
100      this.visualizationTabPage.Controls.Add(this.ganttChart);
101      this.visualizationTabPage.Location = new System.Drawing.Point(4, 22);
102      this.visualizationTabPage.Name = "visualizationTabPage";
103      this.visualizationTabPage.Padding = new System.Windows.Forms.Padding(3);
104      this.visualizationTabPage.Size = new System.Drawing.Size(497, 277);
105      this.visualizationTabPage.TabIndex = 1;
106      this.visualizationTabPage.Text = "Visualization";
107      this.visualizationTabPage.UseVisualStyleBackColor = true;
108      //
109      // ganttChart
110      //
111      this.ganttChart.Dock = System.Windows.Forms.DockStyle.Fill;
112      this.ganttChart.Location = new System.Drawing.Point(3, 3);
113      this.ganttChart.Name = "ganttChart";
114      this.ganttChart.Size = new System.Drawing.Size(491, 271);
115      this.ganttChart.TabIndex = 0;
116      //
117      // JobShopSchedulingProblemView
118      //
119      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
120      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
121      this.Name = "JobShopSchedulingProblemView";
122      this.problemInstanceSplitContainer.Panel1.ResumeLayout(false);
123      this.problemInstanceSplitContainer.Panel2.ResumeLayout(false);
124      this.problemInstanceSplitContainer.Panel2.PerformLayout();
125      ((System.ComponentModel.ISupportInitialize)(this.problemInstanceSplitContainer)).EndInit();
126      this.problemInstanceSplitContainer.ResumeLayout(false);
127      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
128      this.problemTabControl.ResumeLayout(false);
129      this.problemTabPage.ResumeLayout(false);
130      this.visualizationTabPage.ResumeLayout(false);
131      this.ResumeLayout(false);
132
133    }
134
135    #endregion
136
137    private System.Windows.Forms.TabControl problemTabControl;
138    private System.Windows.Forms.TabPage problemTabPage;
139    private System.Windows.Forms.TabPage visualizationTabPage;
140    private GanttChart ganttChart;
141  }
142}
Note: See TracBrowser for help on using the repository browser.