namespace Azimuth.PerformanceTests { partial class MainForm { /// /// 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 Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.progressBar = new System.Windows.Forms.ProgressBar(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.radixsortButton = new System.Windows.Forms.RadioButton(); this.quicksortButton = new System.Windows.Forms.RadioButton(); this.DantzigButton = new System.Windows.Forms.RadioButton(); this.choleskyCheck = new System.Windows.Forms.RadioButton(); this.sparseMMCheckbox = new System.Windows.Forms.RadioButton(); this.matMul = new System.Windows.Forms.RadioButton(); this.BisectionRadio = new System.Windows.Forms.RadioButton(); this.radioButton3 = new System.Windows.Forms.RadioButton(); this.LinearLeastSquaresRadio = new System.Windows.Forms.RadioButton(); this.QRDecompositionRadio = new System.Windows.Forms.RadioButton(); this.StartTest = new System.Windows.Forms.Button(); this.progressLabel = new System.Windows.Forms.Label(); this.groupBox1.SuspendLayout(); this.SuspendLayout(); // // progressBar // this.progressBar.Dock = System.Windows.Forms.DockStyle.Bottom; this.progressBar.Location = new System.Drawing.Point(0, 395); this.progressBar.Name = "progressBar"; this.progressBar.Size = new System.Drawing.Size(331, 23); this.progressBar.TabIndex = 0; // // groupBox1 // this.groupBox1.Controls.Add(this.radixsortButton); this.groupBox1.Controls.Add(this.quicksortButton); this.groupBox1.Controls.Add(this.DantzigButton); this.groupBox1.Controls.Add(this.choleskyCheck); this.groupBox1.Controls.Add(this.sparseMMCheckbox); this.groupBox1.Controls.Add(this.matMul); this.groupBox1.Controls.Add(this.BisectionRadio); this.groupBox1.Controls.Add(this.radioButton3); this.groupBox1.Controls.Add(this.LinearLeastSquaresRadio); this.groupBox1.Controls.Add(this.QRDecompositionRadio); this.groupBox1.Location = new System.Drawing.Point(12, 12); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(307, 336); this.groupBox1.TabIndex = 5; this.groupBox1.TabStop = false; this.groupBox1.Text = "Test"; // // radixsortButton // this.radixsortButton.AutoSize = true; this.radixsortButton.Location = new System.Drawing.Point(6, 203); this.radixsortButton.Name = "radixsortButton"; this.radixsortButton.Size = new System.Drawing.Size(72, 17); this.radixsortButton.TabIndex = 14; this.radixsortButton.TabStop = true; this.radixsortButton.Text = "Radix sort"; this.radixsortButton.UseVisualStyleBackColor = true; // // quicksortButton // this.quicksortButton.AutoSize = true; this.quicksortButton.Location = new System.Drawing.Point(6, 226); this.quicksortButton.Name = "quicksortButton"; this.quicksortButton.Size = new System.Drawing.Size(73, 17); this.quicksortButton.TabIndex = 13; this.quicksortButton.TabStop = true; this.quicksortButton.Text = "Quick sort"; this.quicksortButton.UseVisualStyleBackColor = true; // // DantzigButton // this.DantzigButton.AutoSize = true; this.DantzigButton.Location = new System.Drawing.Point(6, 180); this.DantzigButton.Name = "DantzigButton"; this.DantzigButton.Size = new System.Drawing.Size(61, 17); this.DantzigButton.TabIndex = 12; this.DantzigButton.TabStop = true; this.DantzigButton.Text = "Dantzig"; this.DantzigButton.UseVisualStyleBackColor = true; // // choleskyCheck // this.choleskyCheck.AutoSize = true; this.choleskyCheck.Location = new System.Drawing.Point(6, 157); this.choleskyCheck.Name = "choleskyCheck"; this.choleskyCheck.Size = new System.Drawing.Size(139, 17); this.choleskyCheck.TabIndex = 11; this.choleskyCheck.TabStop = true; this.choleskyCheck.Text = "Cholesky decomposition"; this.choleskyCheck.UseVisualStyleBackColor = true; // // sparseMMCheckbox // this.sparseMMCheckbox.AutoSize = true; this.sparseMMCheckbox.Location = new System.Drawing.Point(6, 134); this.sparseMMCheckbox.Name = "sparseMMCheckbox"; this.sparseMMCheckbox.Size = new System.Drawing.Size(125, 17); this.sparseMMCheckbox.TabIndex = 10; this.sparseMMCheckbox.TabStop = true; this.sparseMMCheckbox.Text = "Sparse matrix multiply"; this.sparseMMCheckbox.UseVisualStyleBackColor = true; // // matMul // this.matMul.AutoSize = true; this.matMul.Location = new System.Drawing.Point(6, 111); this.matMul.Name = "matMul"; this.matMul.Size = new System.Drawing.Size(90, 17); this.matMul.TabIndex = 9; this.matMul.TabStop = true; this.matMul.Text = "Matrix multiply"; this.matMul.UseVisualStyleBackColor = true; // // BisectionRadio // this.BisectionRadio.AutoSize = true; this.BisectionRadio.Location = new System.Drawing.Point(6, 42); this.BisectionRadio.Name = "BisectionRadio"; this.BisectionRadio.Size = new System.Drawing.Size(131, 17); this.BisectionRadio.TabIndex = 8; this.BisectionRadio.TabStop = true; this.BisectionRadio.Text = "Bisection Root Finding"; this.BisectionRadio.UseVisualStyleBackColor = true; // // radioButton3 // this.radioButton3.AutoSize = true; this.radioButton3.Location = new System.Drawing.Point(6, 65); this.radioButton3.Name = "radioButton3"; this.radioButton3.Size = new System.Drawing.Size(202, 17); this.radioButton3.TabIndex = 7; this.radioButton3.TabStop = true; this.radioButton3.Text = "Linear Least Squares with inequalities"; this.radioButton3.UseVisualStyleBackColor = true; // // LinearLeastSquaresRadio // this.LinearLeastSquaresRadio.AutoSize = true; this.LinearLeastSquaresRadio.Location = new System.Drawing.Point(6, 88); this.LinearLeastSquaresRadio.Name = "LinearLeastSquaresRadio"; this.LinearLeastSquaresRadio.Size = new System.Drawing.Size(125, 17); this.LinearLeastSquaresRadio.TabIndex = 6; this.LinearLeastSquaresRadio.TabStop = true; this.LinearLeastSquaresRadio.Text = "Linear Least Squares"; this.LinearLeastSquaresRadio.UseVisualStyleBackColor = true; // // QRDecompositionRadio // this.QRDecompositionRadio.AutoSize = true; this.QRDecompositionRadio.Location = new System.Drawing.Point(6, 19); this.QRDecompositionRadio.Name = "QRDecompositionRadio"; this.QRDecompositionRadio.Size = new System.Drawing.Size(114, 17); this.QRDecompositionRadio.TabIndex = 5; this.QRDecompositionRadio.TabStop = true; this.QRDecompositionRadio.Text = "QR Decomposition"; this.QRDecompositionRadio.UseVisualStyleBackColor = true; // // StartTest // this.StartTest.Location = new System.Drawing.Point(12, 354); this.StartTest.Name = "StartTest"; this.StartTest.Size = new System.Drawing.Size(75, 23); this.StartTest.TabIndex = 6; this.StartTest.Text = "Start test"; this.StartTest.UseVisualStyleBackColor = true; this.StartTest.Click += new System.EventHandler(this.StartTest_Click); // // progressLabel // this.progressLabel.AutoSize = true; this.progressLabel.Location = new System.Drawing.Point(132, 261); this.progressLabel.Name = "progressLabel"; this.progressLabel.Size = new System.Drawing.Size(0, 13); this.progressLabel.TabIndex = 7; // // MainForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(331, 418); this.Controls.Add(this.progressLabel); this.Controls.Add(this.StartTest); this.Controls.Add(this.groupBox1); this.Controls.Add(this.progressBar); this.Name = "MainForm"; this.Text = "Azimuth performance tester"; this.groupBox1.ResumeLayout(false); this.groupBox1.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.ProgressBar progressBar; private System.Windows.Forms.GroupBox groupBox1; private System.Windows.Forms.RadioButton BisectionRadio; private System.Windows.Forms.RadioButton radioButton3; private System.Windows.Forms.RadioButton LinearLeastSquaresRadio; private System.Windows.Forms.RadioButton QRDecompositionRadio; private System.Windows.Forms.Button StartTest; private System.Windows.Forms.Label progressLabel; private System.Windows.Forms.RadioButton matMul; private System.Windows.Forms.RadioButton sparseMMCheckbox; private System.Windows.Forms.RadioButton choleskyCheck; private System.Windows.Forms.RadioButton DantzigButton; private System.Windows.Forms.RadioButton radixsortButton; private System.Windows.Forms.RadioButton quicksortButton; } }