#region License Information /* HeuristicLab * Copyright (C) 2002-2012 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 namespace HeuristicLab.Problems.LCS.Views { partial class XCSModelView { /// /// 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() { this.dataGridView = new System.Windows.Forms.DataGridView(); this.Classifier = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.Prediction = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.Error = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.Fitness = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.Numerosity = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.Timestamp = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.Experience = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.AverageActionSetSize = new System.Windows.Forms.DataGridViewTextBoxColumn(); ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).BeginInit(); this.SuspendLayout(); // // dataGridView // this.dataGridView.AllowUserToAddRows = false; this.dataGridView.AllowUserToDeleteRows = false; this.dataGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dataGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.Classifier, this.Prediction, this.Error, this.Fitness, this.Numerosity, this.Timestamp, this.Experience, this.AverageActionSetSize}); this.dataGridView.Dock = System.Windows.Forms.DockStyle.Fill; this.dataGridView.Location = new System.Drawing.Point(0, 0); this.dataGridView.Name = "dataGridView"; this.dataGridView.ReadOnly = true; this.dataGridView.Size = new System.Drawing.Size(344, 240); this.dataGridView.TabIndex = 0; // // Classifier // this.Classifier.HeaderText = "Classifier"; this.Classifier.Name = "Classifier"; this.Classifier.ReadOnly = true; // // Prediction // this.Prediction.HeaderText = "Prediction"; this.Prediction.Name = "Prediction"; this.Prediction.ReadOnly = true; // // Error // this.Error.HeaderText = "Error"; this.Error.Name = "Error"; this.Error.ReadOnly = true; // // Fitness // this.Fitness.HeaderText = "Fitness"; this.Fitness.Name = "Fitness"; this.Fitness.ReadOnly = true; // // Numerosity // this.Numerosity.HeaderText = "Numerosity"; this.Numerosity.Name = "Numerosity"; this.Numerosity.ReadOnly = true; // // Timestamp // this.Timestamp.HeaderText = "Timestamp"; this.Timestamp.Name = "Timestamp"; this.Timestamp.ReadOnly = true; // // Experience // this.Experience.HeaderText = "Experience"; this.Experience.Name = "Experience"; this.Experience.ReadOnly = true; // // AverageActionSetSize // this.AverageActionSetSize.HeaderText = "AverageActionSetSize"; this.AverageActionSetSize.Name = "AverageActionSetSize"; this.AverageActionSetSize.ReadOnly = true; // // XCSModelView // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Controls.Add(this.dataGridView); this.Name = "XCSModelView"; this.Size = new System.Drawing.Size(344, 240); ((System.ComponentModel.ISupportInitialize)(this.dataGridView)).EndInit(); this.ResumeLayout(false); } #endregion private System.Windows.Forms.DataGridView dataGridView; private System.Windows.Forms.DataGridViewTextBoxColumn Classifier; private System.Windows.Forms.DataGridViewTextBoxColumn Prediction; private System.Windows.Forms.DataGridViewTextBoxColumn Error; private System.Windows.Forms.DataGridViewTextBoxColumn Fitness; private System.Windows.Forms.DataGridViewTextBoxColumn Numerosity; private System.Windows.Forms.DataGridViewTextBoxColumn Timestamp; private System.Windows.Forms.DataGridViewTextBoxColumn Experience; private System.Windows.Forms.DataGridViewTextBoxColumn AverageActionSetSize; } }