Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2931_OR-Tools_LP_MIP/HeuristicLab.MathematicalOptimization/3.3/LinearProgramming/Views/LinearProgrammingProblemDefinitionScriptView.Designer.cs @ 16172

Last change on this file since 16172 was 16172, checked in by ddorfmei, 6 years ago

#2931:

  • created LinearProgrammingAlgorithm
    • created definitions for all LP/MIP solvers supported by OR-Tools
  • created LinearProgrammingProblem
    • created classes required for scripting: LinearProgrammingProblemDefinition, LinearProgrammingProblemDefinitionScript, CompiledLinearProgrammingProblemDefinition
    • created views: LinearProgrammingProblemView, LinearProgrammingProblemDefinitionScriptView
  • updated OR-Tools version in ExtLibs to 6.9
File size: 7.4 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22
23using System.ComponentModel;
24using System.Windows.Forms;
25using HeuristicLab.Scripting.Views;
26
27namespace HeuristicLab.MathematicalOptimization.LinearProgramming.Views {
28  partial class LinearProgrammingProblemDefinitionScriptView {
29    /// <summary>
30    /// Required designer variable.
31    /// </summary>
32    private IContainer components = null;
33
34    /// <summary>
35    /// Clean up any resources being used.
36    /// </summary>
37    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
38    protected override void Dispose(bool disposing) {
39      if (disposing && (components != null)) {
40        components.Dispose();
41      }
42      base.Dispose(disposing);
43    }
44
45    #region Component Designer generated code
46
47    /// <summary>
48    /// Required method for Designer support - do not modify
49    /// the contents of this method with the code editor.
50    /// </summary>
51    private void InitializeComponent() {
52      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LinearProgrammingProblemDefinitionScriptView));
53      this.splitContainer2 = new System.Windows.Forms.SplitContainer();
54      this.variableStoreView = new HeuristicLab.Scripting.Views.VariableStoreView();
55      this.infoTabControl.SuspendLayout();
56      this.outputTabPage.SuspendLayout();
57      this.errorListTabPage.SuspendLayout();
58      ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
59      this.splitContainer1.Panel1.SuspendLayout();
60      this.splitContainer1.Panel2.SuspendLayout();
61      this.splitContainer1.SuspendLayout();
62      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
63      ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
64      this.splitContainer2.Panel1.SuspendLayout();
65      this.splitContainer2.Panel2.SuspendLayout();
66      this.splitContainer2.SuspendLayout();
67      this.SuspendLayout();
68      //
69      // compileButton
70      //
71      this.toolTip.SetToolTip(this.compileButton, "Compile (F6)");
72      //
73      // infoTabControl
74      //
75      this.infoTabControl.Size = new System.Drawing.Size(593, 113);
76      //
77      // outputTabPage
78      //
79      this.outputTabPage.Size = new System.Drawing.Size(585, 87);
80      //
81      // outputTextBox
82      //
83      this.outputTextBox.Size = new System.Drawing.Size(579, 81);
84      //
85      // errorListTabPage
86      //
87      this.errorListTabPage.Size = new System.Drawing.Size(621, 86);
88      //
89      // errorListView
90      //
91      this.errorListView.Size = new System.Drawing.Size(615, 80);
92      //
93      // codeEditor
94      //
95      this.codeEditor.Size = new System.Drawing.Size(593, 429);
96      //
97      // splitContainer1
98      //
99      this.splitContainer1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)));
100      this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
101      this.splitContainer1.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
102      this.splitContainer1.Location = new System.Drawing.Point(0, 0);
103      this.splitContainer1.Size = new System.Drawing.Size(593, 546);
104      this.splitContainer1.SplitterDistance = 429;
105      //
106      // nameTextBox
107      //
108      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
109      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
110      //
111      // splitContainer2
112      //
113      this.splitContainer2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
114            | System.Windows.Forms.AnchorStyles.Left)
115            | System.Windows.Forms.AnchorStyles.Right)));
116      this.splitContainer2.FixedPanel = System.Windows.Forms.FixedPanel.Panel2;
117      this.splitContainer2.Location = new System.Drawing.Point(6, 56);
118      this.splitContainer2.Name = "splitContainer2";
119      //
120      // splitContainer2.Panel1
121      //
122      this.splitContainer2.Panel1.Controls.Add(this.splitContainer1);
123      //
124      // splitContainer2.Panel2
125      //
126      this.splitContainer2.Panel2.Controls.Add(this.variableStoreView);
127      this.splitContainer2.Size = new System.Drawing.Size(826, 546);
128      this.splitContainer2.SplitterDistance = 593;
129      this.splitContainer2.TabIndex = 10;
130      //
131      // variableStoreView
132      //
133      this.variableStoreView.Caption = "ItemCollection View";
134      this.variableStoreView.Content = null;
135      this.variableStoreView.Dock = System.Windows.Forms.DockStyle.Fill;
136      this.variableStoreView.Location = new System.Drawing.Point(0, 0);
137      this.variableStoreView.Name = "variableStoreView";
138      this.variableStoreView.ReadOnly = false;
139      this.variableStoreView.Size = new System.Drawing.Size(229, 546);
140      this.variableStoreView.TabIndex = 10;
141      //
142      // ProblemDefinitionScriptView
143      //
144      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
145      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
146      this.Controls.Add(this.splitContainer2);
147      this.Name = "ProblemDefinitionScriptView";
148      this.Controls.SetChildIndex(this.infoTextLabel, 0);
149      this.Controls.SetChildIndex(this.compileButton, 0);
150      this.Controls.SetChildIndex(this.splitContainer2, 0);
151      this.Controls.SetChildIndex(this.nameLabel, 0);
152      this.Controls.SetChildIndex(this.nameTextBox, 0);
153      this.Controls.SetChildIndex(this.infoLabel, 0);
154      this.infoTabControl.ResumeLayout(false);
155      this.outputTabPage.ResumeLayout(false);
156      this.outputTabPage.PerformLayout();
157      this.errorListTabPage.ResumeLayout(false);
158      this.splitContainer1.Panel1.ResumeLayout(false);
159      this.splitContainer1.Panel2.ResumeLayout(false);
160      ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
161      this.splitContainer1.ResumeLayout(false);
162      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
163      this.splitContainer2.Panel1.ResumeLayout(false);
164      this.splitContainer2.Panel2.ResumeLayout(false);
165      ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
166      this.splitContainer2.ResumeLayout(false);
167      this.ResumeLayout(false);
168      this.PerformLayout();
169
170    }
171
172    #endregion
173
174    private SplitContainer splitContainer2;
175    private VariableStoreView variableStoreView;
176  }
177}
Note: See TracBrowser for help on using the repository browser.