#region License Information /* HeuristicLab * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) * * This file is part of HeuristicLab. * * HeuristicLab is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * HeuristicLab is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with HeuristicLab. If not, see . */ #endregion using System; namespace HeuristicLab.Problems.DataAnalysis.Views { partial class ParsedConstraintView { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Component Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ParsedConstraintView)); this.splitContainer1 = new System.Windows.Forms.SplitContainer(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.constraintsInput = new System.Windows.Forms.TextBox(); this.parseBtn = new System.Windows.Forms.Button(); this.label1 = new System.Windows.Forms.Label(); //this.constraintsOutput = new System.Windows.Forms.Label(); this.constraintsOutput = new HeuristicLab.Core.Views.CheckedItemListView(); this.errorOutput = new System.Windows.Forms.Label(); ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit(); this.splitContainer1.Panel1.SuspendLayout(); this.splitContainer1.Panel2.SuspendLayout(); this.splitContainer1.SuspendLayout(); this.groupBox1.SuspendLayout(); this.SuspendLayout(); // // splitContainer1 // this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill; this.splitContainer1.Location = new System.Drawing.Point(0, 0); this.splitContainer1.Name = "splitContainer1"; // // splitContainer1.Panel1 // this.splitContainer1.Panel1.Controls.Add(this.groupBox1); // // splitContainer1.Panel2 // this.splitContainer1.Panel2.Controls.Add(this.constraintsOutput); this.splitContainer1.Size = new System.Drawing.Size(888, 629); this.splitContainer1.SplitterDistance = 296; this.splitContainer1.TabIndex = 0; // // groupBox1 // this.groupBox1.Controls.Add(this.constraintsInput); this.groupBox1.Controls.Add(this.parseBtn); this.groupBox1.Controls.Add(this.label1); this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill; this.groupBox1.Location = new System.Drawing.Point(0, 0); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(296, 629); this.groupBox1.TabIndex = 3; this.groupBox1.TabStop = false; this.groupBox1.Text = "Constraints Input"; // // constraintsInput // this.constraintsInput.AcceptsTab = true; this.constraintsInput.Dock = System.Windows.Forms.DockStyle.Fill; this.constraintsInput.Location = new System.Drawing.Point(3, 198); this.constraintsInput.Multiline = true; this.constraintsInput.Name = "constraintsInput"; this.constraintsInput.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; this.constraintsInput.Size = new System.Drawing.Size(290, 405); this.constraintsInput.TabIndex = 2; this.constraintsInput.TextChanged += new System.EventHandler(this.constraintsInput_TextChanged); // // parseBtn // this.parseBtn.Dock = System.Windows.Forms.DockStyle.Bottom; this.parseBtn.Location = new System.Drawing.Point(3, 603); this.parseBtn.Name = "parseBtn"; this.parseBtn.Size = new System.Drawing.Size(290, 23); this.parseBtn.TabIndex = 1; this.parseBtn.Text = "Parse Constraints"; this.parseBtn.UseVisualStyleBackColor = true; this.parseBtn.Click += new System.EventHandler(this.parseBtn_Click); // // label1 // this.label1.AutoSize = true; this.label1.Dock = System.Windows.Forms.DockStyle.Top; this.label1.Location = new System.Drawing.Point(3, 16); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(250, 182); this.label1.TabIndex = 0; this.label1.Text = "To define target variable constraints:" + Environment.NewLine + "1. Start the definition with target:" + Environment.NewLine + "2. Specify the target variable between '-characters" + Environment.NewLine + "3. Add the keyword in" + Environment.NewLine + "4. Specify the interval with [lowerbound .. upperbound]" + Environment.NewLine + "5. Open or closed square brackets denotes if an interval is open or closed" + Environment.NewLine + Environment.NewLine + "To define a derivation constraint: " + Environment.NewLine + "1. Start with d or \u2202" + Environment.NewLine + "2. Specify the target between '-characters" + Environment.NewLine + "3. Seperate taget and derivation variable with /" + Environment.NewLine + "4. Add derivation variable between '-characters'" + Environment.NewLine + "5. Follow the steps 3-5 from above"; // // constraintsOutput // this.constraintsOutput.Dock = System.Windows.Forms.DockStyle.Fill; this.constraintsOutput.Location = new System.Drawing.Point(3, 16); this.constraintsOutput.Name = "constraintsOutput"; this.constraintsOutput.Size = new System.Drawing.Size(582, 587); this.constraintsOutput.TabIndex = 2; // // errorOutput // this.errorOutput.Dock = System.Windows.Forms.DockStyle.Bottom; this.errorOutput.ForeColor = System.Drawing.Color.Red; this.errorOutput.Location = new System.Drawing.Point(3, 603); this.errorOutput.Name = "errorOutput"; this.errorOutput.Size = new System.Drawing.Size(582, 23); this.errorOutput.TabIndex = 1; this.errorOutput.Text = "ERROR"; this.errorOutput.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; // // ParsedConstraintView // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(this.splitContainer1); this.Name = "ParsedConstraintView"; this.Size = new System.Drawing.Size(888, 629); this.splitContainer1.Panel1.ResumeLayout(false); this.splitContainer1.Panel2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit(); this.splitContainer1.ResumeLayout(false); this.groupBox1.ResumeLayout(false); this.groupBox1.PerformLayout(); this.ResumeLayout(false); } #endregion private System.Windows.Forms.SplitContainer splitContainer1; private System.Windows.Forms.GroupBox groupBox1; private System.Windows.Forms.Button parseBtn; private System.Windows.Forms.Label label1; private System.Windows.Forms.TextBox constraintsInput; private System.Windows.Forms.Label errorOutput; //private System.Windows.Forms.Label constraintsOutput; private HeuristicLab.Core.Views.CheckedItemListView constraintsOutput; } }