Click here to Skip to main content
15,889,839 members
Articles / Programming Languages / XML

Superlinear: An Investigation into Concurrent Speedup

Rate me:
Please Sign up or sign in to vote.
4.93/5 (13 votes)
11 Oct 2009CPOL7 min read 40.2K   250   18  
Making more of your cores
namespace Superlinear
{
	partial class Form1
	{
		/// <summary>
		/// Required designer variable.
		/// </summary>
		private System.ComponentModel.IContainer components = null;

		/// <summary>
		/// Clean up any resources being used.
		/// </summary>
		/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
		protected override void Dispose( bool disposing )
		{
			if ( disposing && ( components != null ) )
			{
				components.Dispose();
			}
			base.Dispose( disposing );
		}

		#region Windows Form Designer generated code

		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			this.tabControl1 = new System.Windows.Forms.TabControl();
			this.tabPage1 = new System.Windows.Forms.TabPage();
			this.tabPage2 = new System.Windows.Forms.TabPage();
			this.zedSize = new ZedGraph.ZedGraphControl();
			this.zedStep = new ZedGraph.ZedGraphControl();
			this.tabControl1.SuspendLayout();
			this.tabPage1.SuspendLayout();
			this.tabPage2.SuspendLayout();
			this.SuspendLayout();
			// 
			// tabControl1
			// 
			this.tabControl1.Controls.Add( this.tabPage1 );
			this.tabControl1.Controls.Add( this.tabPage2 );
			this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
			this.tabControl1.Location = new System.Drawing.Point( 0, 0 );
			this.tabControl1.Name = "tabControl1";
			this.tabControl1.SelectedIndex = 0;
			this.tabControl1.Size = new System.Drawing.Size( 584, 562 );
			this.tabControl1.TabIndex = 0;
			// 
			// tabPage1
			// 
			this.tabPage1.Controls.Add( this.zedSize );
			this.tabPage1.Location = new System.Drawing.Point( 4, 22 );
			this.tabPage1.Name = "tabPage1";
			this.tabPage1.Padding = new System.Windows.Forms.Padding( 3 );
			this.tabPage1.Size = new System.Drawing.Size( 576, 536 );
			this.tabPage1.TabIndex = 0;
			this.tabPage1.Text = "Size";
			this.tabPage1.UseVisualStyleBackColor = true;
			// 
			// tabPage2
			// 
			this.tabPage2.Controls.Add( this.zedStep );
			this.tabPage2.Location = new System.Drawing.Point( 4, 22 );
			this.tabPage2.Name = "tabPage2";
			this.tabPage2.Padding = new System.Windows.Forms.Padding( 3 );
			this.tabPage2.Size = new System.Drawing.Size( 576, 536 );
			this.tabPage2.TabIndex = 1;
			this.tabPage2.Text = "Step";
			this.tabPage2.UseVisualStyleBackColor = true;
			// 
			// zedSize
			// 
			this.zedSize.Dock = System.Windows.Forms.DockStyle.Fill;
			this.zedSize.Location = new System.Drawing.Point( 3, 3 );
			this.zedSize.Name = "zedSize";
			this.zedSize.ScrollGrace = 0;
			this.zedSize.ScrollMaxX = 0;
			this.zedSize.ScrollMaxY = 0;
			this.zedSize.ScrollMaxY2 = 0;
			this.zedSize.ScrollMinX = 0;
			this.zedSize.ScrollMinY = 0;
			this.zedSize.ScrollMinY2 = 0;
			this.zedSize.Size = new System.Drawing.Size( 570, 530 );
			this.zedSize.TabIndex = 0;
			// 
			// zedStep
			// 
			this.zedStep.Dock = System.Windows.Forms.DockStyle.Fill;
			this.zedStep.Location = new System.Drawing.Point( 3, 3 );
			this.zedStep.Name = "zedStep";
			this.zedStep.ScrollGrace = 0;
			this.zedStep.ScrollMaxX = 0;
			this.zedStep.ScrollMaxY = 0;
			this.zedStep.ScrollMaxY2 = 0;
			this.zedStep.ScrollMinX = 0;
			this.zedStep.ScrollMinY = 0;
			this.zedStep.ScrollMinY2 = 0;
			this.zedStep.Size = new System.Drawing.Size( 570, 530 );
			this.zedStep.TabIndex = 0;
			// 
			// Form1
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF( 6F, 13F );
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.ClientSize = new System.Drawing.Size( 584, 562 );
			this.Controls.Add( this.tabControl1 );
			this.Name = "Form1";
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Superlinear";
			this.tabControl1.ResumeLayout( false );
			this.tabPage1.ResumeLayout( false );
			this.tabPage2.ResumeLayout( false );
			this.ResumeLayout( false );

		}

		#endregion

		private System.Windows.Forms.TabControl tabControl1;
		private System.Windows.Forms.TabPage tabPage1;
		private System.Windows.Forms.TabPage tabPage2;
		private ZedGraph.ZedGraphControl zedSize;
		private ZedGraph.ZedGraphControl zedStep;

	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United Kingdom United Kingdom
I discovered C# and .NET 1.0 Beta 1 in late 2000 and loved them immediately.
I have been writing software professionally in C# ever since

In real life, I have spent 3 years travelling abroad,
I have held a UK Private Pilots Licence for 20 years,
and I am a PADI Divemaster.

I now live near idyllic Bournemouth in England.

I can work 'virtually' anywhere!

Comments and Discussions