Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PushGP/HeuristicLab.PushGP/HeuristicLab.Problems.ProgramSynthesis/Push/Views/ExpressionSelectionView.Designer.cs @ 15366

Last change on this file since 15366 was 15032, checked in by pkimmesw, 7 years ago

#2665 Fixed bias 0 issue, PushExpressionFrequencyAnalyzer, Fixed probability for ERC settings, Fixed enable/disable instructions, Added expression descriptions

File size: 2.5 KB
Line 
1namespace HeuristicLab.Problems.ProgramSynthesis.Push.Views {
2  partial class ExpressionSelectionView {
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.groupBox1 = new System.Windows.Forms.GroupBox();
27      this.expressionsTreeView = new System.Windows.Forms.TreeView();
28      this.groupBox1.SuspendLayout();
29      this.SuspendLayout();
30      //
31      // groupBox1
32      //
33      this.groupBox1.Controls.Add(this.expressionsTreeView);
34      this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
35      this.groupBox1.Location = new System.Drawing.Point(0, 0);
36      this.groupBox1.Name = "groupBox1";
37      this.groupBox1.Size = new System.Drawing.Size(327, 455);
38      this.groupBox1.TabIndex = 3;
39      this.groupBox1.TabStop = false;
40      this.groupBox1.Text = "Instructions";
41      //
42      // expressionsTreeView
43      //
44      this.expressionsTreeView.CheckBoxes = true;
45      this.expressionsTreeView.Dock = System.Windows.Forms.DockStyle.Fill;
46      this.expressionsTreeView.Location = new System.Drawing.Point(3, 16);
47      this.expressionsTreeView.Name = "expressionsTreeView";
48      this.expressionsTreeView.ShowNodeToolTips = true;
49      this.expressionsTreeView.Size = new System.Drawing.Size(321, 436);
50      this.expressionsTreeView.TabIndex = 0;
51      //
52      // ExpressionSelectionView
53      //
54      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
55      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
56      this.Controls.Add(this.groupBox1);
57      this.Name = "ExpressionSelectionView";
58      this.Size = new System.Drawing.Size(327, 455);
59      this.groupBox1.ResumeLayout(false);
60      this.ResumeLayout(false);
61
62    }
63
64    #endregion
65
66    private System.Windows.Forms.GroupBox groupBox1;
67    private System.Windows.Forms.TreeView expressionsTreeView;
68  }
69}
Note: See TracBrowser for help on using the repository browser.