1 | #region License Information
|
---|
2 |
|
---|
3 | /* HeuristicLab
|
---|
4 | * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
5 | *
|
---|
6 | * This file is part of HeuristicLab.
|
---|
7 | *
|
---|
8 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
9 | * it under the terms of the GNU General Public License as published by
|
---|
10 | * the Free Software Foundation, either version 3 of the License, or
|
---|
11 | * (at your option) any later version.
|
---|
12 | *
|
---|
13 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
16 | * GNU General Public License for more details.
|
---|
17 | *
|
---|
18 | * You should have received a copy of the GNU General Public License
|
---|
19 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
20 | */
|
---|
21 |
|
---|
22 | #endregion
|
---|
23 | using System;
|
---|
24 | using System.Drawing;
|
---|
25 | using System.Windows.Forms;
|
---|
26 | using HeuristicLab.Core.Views;
|
---|
27 |
|
---|
28 | namespace HeuristicLab.Problems.DataAnalysis.Views {
|
---|
29 | partial class ProblemDataConstraintView {
|
---|
30 | /// <summary>
|
---|
31 | /// Required designer variable.
|
---|
32 | /// </summary>
|
---|
33 | private System.ComponentModel.IContainer components = null;
|
---|
34 |
|
---|
35 | /// <summary>
|
---|
36 | /// Clean up any resources being used.
|
---|
37 | /// </summary>
|
---|
38 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
39 | protected override void Dispose(bool disposing) {
|
---|
40 | if (disposing && (components != null)) {
|
---|
41 | components.Dispose();
|
---|
42 | }
|
---|
43 | base.Dispose(disposing);
|
---|
44 | }
|
---|
45 |
|
---|
46 | #region Component Designer generated code
|
---|
47 |
|
---|
48 | /// <summary>
|
---|
49 | /// Required method for Designer support - do not modify
|
---|
50 | /// the contents of this method with the code editor.
|
---|
51 | /// </summary>
|
---|
52 | private void InitializeComponent() {
|
---|
53 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ProblemDataConstraintView));
|
---|
54 | this.splitContainer1 = new System.Windows.Forms.SplitContainer();
|
---|
55 | this.groupBox1 = new System.Windows.Forms.GroupBox();
|
---|
56 | this.constraintsInput = new System.Windows.Forms.TextBox();
|
---|
57 | this.parseBtn = new System.Windows.Forms.Button();
|
---|
58 | this.errorOutput = new System.Windows.Forms.Label();
|
---|
59 | this.label1 = new System.Windows.Forms.Label();
|
---|
60 | this.intervalConstraintsView = new CheckedItemListView<IntervalConstraint>();
|
---|
61 | ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
|
---|
62 | this.splitContainer1.Panel1.SuspendLayout();
|
---|
63 | this.splitContainer1.Panel2.SuspendLayout();
|
---|
64 | this.splitContainer1.SuspendLayout();
|
---|
65 | this.groupBox1.SuspendLayout();
|
---|
66 | this.SuspendLayout();
|
---|
67 | //
|
---|
68 | // splitContainer1
|
---|
69 | //
|
---|
70 | this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
71 | this.splitContainer1.Location = new System.Drawing.Point(0, 0);
|
---|
72 | this.splitContainer1.Name = "splitContainer1";
|
---|
73 | //
|
---|
74 | // splitContainer1.Panel1
|
---|
75 | //
|
---|
76 | this.splitContainer1.Panel1.Controls.Add(this.groupBox1);
|
---|
77 | //
|
---|
78 | // splitContainer1.Panel2
|
---|
79 | //
|
---|
80 | this.splitContainer1.Panel2.Controls.Add(this.intervalConstraintsView);
|
---|
81 | this.splitContainer1.Size = new System.Drawing.Size(888, 629);
|
---|
82 | this.splitContainer1.SplitterDistance = 296;
|
---|
83 | this.splitContainer1.TabIndex = 0;
|
---|
84 | //
|
---|
85 | // groupBox1
|
---|
86 | //
|
---|
87 | this.groupBox1.Controls.Add(this.constraintsInput);
|
---|
88 | this.groupBox1.Controls.Add(this.parseBtn);
|
---|
89 | this.groupBox1.Controls.Add(this.errorOutput);
|
---|
90 | this.groupBox1.Controls.Add(this.label1);
|
---|
91 | this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
92 | this.groupBox1.Location = new System.Drawing.Point(0, 0);
|
---|
93 | this.groupBox1.Name = "groupBox1";
|
---|
94 | this.groupBox1.Size = new System.Drawing.Size(296, 629);
|
---|
95 | this.groupBox1.TabIndex = 3;
|
---|
96 | this.groupBox1.TabStop = false;
|
---|
97 | this.groupBox1.Text = "Constraints Input";
|
---|
98 | //
|
---|
99 | // constraintsInput
|
---|
100 | //
|
---|
101 | this.constraintsInput.AcceptsTab = true;
|
---|
102 | this.constraintsInput.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
103 | this.constraintsInput.Location = new System.Drawing.Point(3, 185);
|
---|
104 | this.constraintsInput.Multiline = true;
|
---|
105 | this.constraintsInput.Name = "constraintsInput";
|
---|
106 | this.constraintsInput.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
|
---|
107 | this.constraintsInput.Size = new System.Drawing.Size(290, 405);
|
---|
108 | this.constraintsInput.TabIndex = 2;
|
---|
109 | this.constraintsInput.TextChanged += new System.EventHandler(this.constraintsInput_TextChanged);
|
---|
110 | //
|
---|
111 | // parseBtn
|
---|
112 | //
|
---|
113 | this.parseBtn.Dock = System.Windows.Forms.DockStyle.Bottom;
|
---|
114 | this.parseBtn.Location = new System.Drawing.Point(3, 590);
|
---|
115 | this.parseBtn.Name = "parseBtn";
|
---|
116 | this.parseBtn.Size = new System.Drawing.Size(290, 23);
|
---|
117 | this.parseBtn.TabIndex = 1;
|
---|
118 | this.parseBtn.Text = "Parse Constraints";
|
---|
119 | this.parseBtn.UseVisualStyleBackColor = true;
|
---|
120 | this.parseBtn.Click += new System.EventHandler(this.parseBtn_Click);
|
---|
121 | //
|
---|
122 | // errorOutput
|
---|
123 | //
|
---|
124 | this.errorOutput.MaximumSize = new Size(350, 0);
|
---|
125 | this.errorOutput.AutoSize = true;
|
---|
126 | this.errorOutput.ForeColor = Color.DarkRed;
|
---|
127 | this.errorOutput.Dock = System.Windows.Forms.DockStyle.Bottom;
|
---|
128 | this.errorOutput.Location = new System.Drawing.Point(3, 613);
|
---|
129 | this.errorOutput.Name = "errorOutput";
|
---|
130 | this.errorOutput.Size = new System.Drawing.Size(35, 13);
|
---|
131 | this.errorOutput.TabIndex = 3;
|
---|
132 | this.errorOutput.Text = "label2";
|
---|
133 | //
|
---|
134 | // label1
|
---|
135 | //
|
---|
136 | this.label1.AutoSize = true;
|
---|
137 | this.label1.Dock = System.Windows.Forms.DockStyle.Top;
|
---|
138 | this.label1.Location = new System.Drawing.Point(3, 16);
|
---|
139 | this.label1.Name = "label1";
|
---|
140 | this.label1.Size = new System.Drawing.Size(354, 169);
|
---|
141 | this.label1.TabIndex = 0;
|
---|
142 | this.label1.Text = "To define target variable constraints:" + Environment.NewLine +
|
---|
143 | "1. Start the definition with target:" + Environment.NewLine +
|
---|
144 | "2. Specify the target variable between '-characters" + Environment.NewLine +
|
---|
145 | "3. Add the keyword in" + Environment.NewLine +
|
---|
146 | "4. Specify the interval with [lowerbound .. upperbound]" + Environment.NewLine +
|
---|
147 | "To define a derivation constraint: " + Environment.NewLine +
|
---|
148 | "1. Start with d or \u2202" + Environment.NewLine +
|
---|
149 | "2. Specify the target between '-characters" + Environment.NewLine +
|
---|
150 | "3. Separate target and derivation variable with /" + Environment.NewLine +
|
---|
151 | "4. Add derivation variable between '-characters'" + Environment.NewLine +
|
---|
152 | "5. Follow the steps 3-4 from above";
|
---|
153 | //
|
---|
154 | // intervalConstraintsView
|
---|
155 | //
|
---|
156 | this.intervalConstraintsView.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
157 | this.intervalConstraintsView.Location = new System.Drawing.Point(0, 0);
|
---|
158 | this.intervalConstraintsView.Name = "intervalConstraintsView";
|
---|
159 | this.intervalConstraintsView.Size = new System.Drawing.Size(588, 20);
|
---|
160 | this.intervalConstraintsView.TabIndex = 2;
|
---|
161 | //
|
---|
162 | // ProblemDataConstraintView
|
---|
163 | //
|
---|
164 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
165 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
166 | this.Controls.Add(this.splitContainer1);
|
---|
167 | this.Name = "ProblemDataConstraintView";
|
---|
168 | this.Size = new System.Drawing.Size(888, 629);
|
---|
169 | this.splitContainer1.Panel1.ResumeLayout(false);
|
---|
170 | this.splitContainer1.Panel2.ResumeLayout(false);
|
---|
171 | this.splitContainer1.Panel2.PerformLayout();
|
---|
172 | ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
|
---|
173 | this.splitContainer1.ResumeLayout(false);
|
---|
174 | this.groupBox1.ResumeLayout(false);
|
---|
175 | this.groupBox1.PerformLayout();
|
---|
176 | this.ResumeLayout(false);
|
---|
177 |
|
---|
178 | }
|
---|
179 | #endregion
|
---|
180 |
|
---|
181 | private System.Windows.Forms.SplitContainer splitContainer1;
|
---|
182 | private System.Windows.Forms.GroupBox groupBox1;
|
---|
183 | private System.Windows.Forms.Button parseBtn;
|
---|
184 | private System.Windows.Forms.Label label1;
|
---|
185 | private HeuristicLab.Core.Views.CheckedItemListView<IntervalConstraint> intervalConstraintsView;
|
---|
186 | private System.Windows.Forms.TextBox constraintsInput;
|
---|
187 | private Label errorOutput;
|
---|
188 | }
|
---|
189 | }
|
---|