Questo sito utilizza cookies solo per scopi di autenticazione sul sito e nient'altro. Nessuna informazione personale viene tracciata. Leggi l'informativa sui cookies.
Username: Password: oppure
GA Sequencer - Form1.Designer.vb

Form1.Designer.vb

Caricato da: Totem
Scarica il programma completo

  1. <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
  2. Partial Class Form1
  3.     Inherits System.Windows.Forms.Form
  4.  
  5.     'Form overrides dispose to clean up the component list.
  6.     <System.Diagnostics.DebuggerNonUserCode()> _
  7.     Protected Overrides Sub Dispose(ByVal disposing As Boolean)
  8.         Try
  9.             If disposing AndAlso components IsNot Nothing Then
  10.                 components.Dispose()
  11.             End If
  12.         Finally
  13.             MyBase.Dispose(disposing)
  14.         End Try
  15.     End Sub
  16.  
  17.     'Required by the Windows Form Designer
  18.     Private components As System.ComponentModel.IContainer
  19.  
  20.     'NOTE: The following procedure is required by the Windows Form Designer
  21.     'It can be modified using the Windows Form Designer.  
  22.     'Do not modify it using the code editor.
  23.     <System.Diagnostics.DebuggerStepThrough()> _
  24.     Private Sub InitializeComponent()
  25.         Me.Label1 = New System.Windows.Forms.Label
  26.         Me.Label2 = New System.Windows.Forms.Label
  27.         Me.dgvData = New System.Windows.Forms.DataGridView
  28.         Me.clmX = New System.Windows.Forms.DataGridViewTextBoxColumn
  29.         Me.clmY = New System.Windows.Forms.DataGridViewTextBoxColumn
  30.         Me.grpOptions = New System.Windows.Forms.GroupBox
  31.         Me.chbElitism = New System.Windows.Forms.CheckBox
  32.         Me.nudCrossovers = New System.Windows.Forms.NumericUpDown
  33.         Me.Label6 = New System.Windows.Forms.Label
  34.         Me.nudMaxTreeDepth = New System.Windows.Forms.NumericUpDown
  35.         Me.Label5 = New System.Windows.Forms.Label
  36.         Me.nudMutationProbability = New System.Windows.Forms.NumericUpDown
  37.         Me.Label4 = New System.Windows.Forms.Label
  38.         Me.nudPopulationSize = New System.Windows.Forms.NumericUpDown
  39.         Me.Label3 = New System.Windows.Forms.Label
  40.         Me.btnCalculate = New System.Windows.Forms.Button
  41.         Me.txtResult = New System.Windows.Forms.TextBox
  42.         Me.lblError = New System.Windows.Forms.Label
  43.         Me.btnStop = New System.Windows.Forms.Button
  44.         Me.Label7 = New System.Windows.Forms.Label
  45.         Me.lblGeneration = New System.Windows.Forms.Label
  46.         Me.btnTryVariation = New System.Windows.Forms.Button
  47.         Me.btnEvaluate = New System.Windows.Forms.Button
  48.         Me.Label8 = New System.Windows.Forms.Label
  49.         Me.dgvEvaluatedData = New System.Windows.Forms.DataGridView
  50.         Me.Column1 = New System.Windows.Forms.DataGridViewTextBoxColumn
  51.         Me.Column2 = New System.Windows.Forms.DataGridViewTextBoxColumn
  52.         CType(Me.dgvData, System.ComponentModel.ISupportInitialize).BeginInit()
  53.         Me.grpOptions.SuspendLayout()
  54.         CType(Me.nudCrossovers, System.ComponentModel.ISupportInitialize).BeginInit()
  55.         CType(Me.nudMaxTreeDepth, System.ComponentModel.ISupportInitialize).BeginInit()
  56.         CType(Me.nudMutationProbability, System.ComponentModel.ISupportInitialize).BeginInit()
  57.         CType(Me.nudPopulationSize, System.ComponentModel.ISupportInitialize).BeginInit()
  58.         CType(Me.dgvEvaluatedData, System.ComponentModel.ISupportInitialize).BeginInit()
  59.         Me.SuspendLayout()
  60.         '
  61.         'Label1
  62.         '
  63.         Me.Label1.AutoSize = True
  64.         Me.Label1.Location = New System.Drawing.Point(12, 9)
  65.         Me.Label1.Name = "Label1"
  66.         Me.Label1.Size = New System.Drawing.Size(369, 13)
  67.         Me.Label1.TabIndex = 0
  68.         Me.Label1.Text = "Il programma tenterà di individuare la funzione che lega dei dati X a dei dati Y"
  69.         '
  70.         'Label2
  71.         '
  72.         Me.Label2.AutoSize = True
  73.         Me.Label2.Location = New System.Drawing.Point(12, 40)
  74.         Me.Label2.Name = "Label2"
  75.         Me.Label2.Size = New System.Drawing.Size(125, 13)
  76.         Me.Label2.TabIndex = 1
  77.         Me.Label2.Text = "Inserisci le coppie di dati:"
  78.         '
  79.         'dgvData
  80.         '
  81.         Me.dgvData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  82.         Me.dgvData.Columns.AddRange(New System.Windows.Forms.DataGridViewColumn() {Me.clmX, Me.clmY})
  83.         Me.dgvData.Location = New System.Drawing.Point(15, 56)
  84.         Me.dgvData.Name = "dgvData"
  85.         Me.dgvData.Size = New System.Drawing.Size(247, 193)
  86.         Me.dgvData.TabIndex = 2
  87.         '
  88.         'clmX
  89.         '
  90.         Me.clmX.HeaderText = "X"
  91.         Me.clmX.Name = "clmX"
  92.         '
  93.         'clmY
  94.         '
  95.         Me.clmY.HeaderText = "Y"
  96.         Me.clmY.Name = "clmY"
  97.         '
  98.         'grpOptions
  99.         '
  100.         Me.grpOptions.Controls.Add(Me.chbElitism)
  101.         Me.grpOptions.Controls.Add(Me.nudCrossovers)
  102.         Me.grpOptions.Controls.Add(Me.Label6)
  103.         Me.grpOptions.Controls.Add(Me.nudMaxTreeDepth)
  104.         Me.grpOptions.Controls.Add(Me.Label5)
  105.         Me.grpOptions.Controls.Add(Me.nudMutationProbability)
  106.         Me.grpOptions.Controls.Add(Me.Label4)
  107.         Me.grpOptions.Controls.Add(Me.nudPopulationSize)
  108.         Me.grpOptions.Controls.Add(Me.Label3)
  109.         Me.grpOptions.Location = New System.Drawing.Point(268, 40)
  110.         Me.grpOptions.Name = "grpOptions"
  111.         Me.grpOptions.Size = New System.Drawing.Size(248, 172)
  112.         Me.grpOptions.TabIndex = 3
  113.         Me.grpOptions.TabStop = False
  114.         Me.grpOptions.Text = "Opzioni algoritmo genetico"
  115.         '
  116.         'chbElitism
  117.         '
  118.         Me.chbElitism.AutoSize = True
  119.         Me.chbElitism.Checked = True
  120.         Me.chbElitism.CheckState = System.Windows.Forms.CheckState.Checked
  121.         Me.chbElitism.Location = New System.Drawing.Point(6, 146)
  122.         Me.chbElitism.Name = "chbElitism"
  123.         Me.chbElitism.Size = New System.Drawing.Size(118, 17)
  124.         Me.chbElitism.TabIndex = 8
  125.         Me.chbElitism.Text = "Predominio dell'elite"
  126.         Me.chbElitism.UseVisualStyleBackColor = True
  127.         '
  128.         'nudCrossovers
  129.         '
  130.         Me.nudCrossovers.Location = New System.Drawing.Point(173, 111)
  131.         Me.nudCrossovers.Maximum = New Decimal(New Integer() {24, 0, 0, 0})
  132.         Me.nudCrossovers.Minimum = New Decimal(New Integer() {1, 0, 0, 0})
  133.         Me.nudCrossovers.Name = "nudCrossovers"
  134.         Me.nudCrossovers.Size = New System.Drawing.Size(68, 20)
  135.         Me.nudCrossovers.TabIndex = 7
  136.         Me.nudCrossovers.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  137.         Me.nudCrossovers.Value = New Decimal(New Integer() {4, 0, 0, 0})
  138.         '
  139.         'Label6
  140.         '
  141.         Me.Label6.AutoSize = True
  142.         Me.Label6.Location = New System.Drawing.Point(6, 108)
  143.         Me.Label6.Name = "Label6"
  144.         Me.Label6.Size = New System.Drawing.Size(86, 26)
  145.         Me.Label6.TabIndex = 6
  146.         Me.Label6.Text = "Accoppiamenti" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "per generazione:"
  147.         '
  148.         'nudMaxTreeDepth
  149.         '
  150.         Me.nudMaxTreeDepth.Location = New System.Drawing.Point(173, 78)
  151.         Me.nudMaxTreeDepth.Maximum = New Decimal(New Integer() {30, 0, 0, 0})
  152.         Me.nudMaxTreeDepth.Minimum = New Decimal(New Integer() {1, 0, 0, 0})
  153.         Me.nudMaxTreeDepth.Name = "nudMaxTreeDepth"
  154.         Me.nudMaxTreeDepth.Size = New System.Drawing.Size(68, 20)
  155.         Me.nudMaxTreeDepth.TabIndex = 5
  156.         Me.nudMaxTreeDepth.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  157.         Me.nudMaxTreeDepth.Value = New Decimal(New Integer() {5, 0, 0, 0})
  158.         '
  159.         'Label5
  160.         '
  161.         Me.Label5.AutoSize = True
  162.         Me.Label5.Location = New System.Drawing.Point(6, 75)
  163.         Me.Label5.Name = "Label5"
  164.         Me.Label5.Size = New System.Drawing.Size(127, 26)
  165.         Me.Label5.TabIndex = 4
  166.         Me.Label5.Text = "Massima profondità" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "dell'albero di espressione:"
  167.         '
  168.         'nudMutationProbability
  169.         '
  170.         Me.nudMutationProbability.Location = New System.Drawing.Point(173, 45)
  171.         Me.nudMutationProbability.Minimum = New Decimal(New Integer() {1, 0, 0, 0})
  172.         Me.nudMutationProbability.Name = "nudMutationProbability"
  173.         Me.nudMutationProbability.Size = New System.Drawing.Size(68, 20)
  174.         Me.nudMutationProbability.TabIndex = 3
  175.         Me.nudMutationProbability.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  176.         Me.nudMutationProbability.Value = New Decimal(New Integer() {70, 0, 0, 0})
  177.         '
  178.         'Label4
  179.         '
  180.         Me.Label4.AutoSize = True
  181.         Me.Label4.Location = New System.Drawing.Point(6, 47)
  182.         Me.Label4.Name = "Label4"
  183.         Me.Label4.Size = New System.Drawing.Size(121, 13)
  184.         Me.Label4.TabIndex = 2
  185.         Me.Label4.Text = "Probabilità di mutazione:"
  186.         '
  187.         'nudPopulationSize
  188.         '
  189.         Me.nudPopulationSize.Location = New System.Drawing.Point(173, 19)
  190.         Me.nudPopulationSize.Maximum = New Decimal(New Integer() {500, 0, 0, 0})
  191.         Me.nudPopulationSize.Minimum = New Decimal(New Integer() {20, 0, 0, 0})
  192.         Me.nudPopulationSize.Name = "nudPopulationSize"
  193.         Me.nudPopulationSize.Size = New System.Drawing.Size(68, 20)
  194.         Me.nudPopulationSize.TabIndex = 1
  195.         Me.nudPopulationSize.TextAlign = System.Windows.Forms.HorizontalAlignment.Center
  196.         Me.nudPopulationSize.Value = New Decimal(New Integer() {50, 0, 0, 0})
  197.         '
  198.         'Label3
  199.         '
  200.         Me.Label3.AutoSize = True
  201.         Me.Label3.Location = New System.Drawing.Point(6, 21)
  202.         Me.Label3.Name = "Label3"
  203.         Me.Label3.Size = New System.Drawing.Size(100, 13)
  204.         Me.Label3.TabIndex = 0
  205.         Me.Label3.Text = "Popolazione inizale:"
  206.         '
  207.         'btnCalculate
  208.         '
  209.         Me.btnCalculate.Location = New System.Drawing.Point(355, 218)
  210.         Me.btnCalculate.Name = "btnCalculate"
  211.         Me.btnCalculate.Size = New System.Drawing.Size(75, 23)
  212.         Me.btnCalculate.TabIndex = 4
  213.         Me.btnCalculate.Text = "Calcola"
  214.         Me.btnCalculate.UseVisualStyleBackColor = True
  215.         '
  216.         'txtResult
  217.         '
  218.         Me.txtResult.Location = New System.Drawing.Point(268, 271)
  219.         Me.txtResult.Multiline = True
  220.         Me.txtResult.Name = "txtResult"
  221.         Me.txtResult.Size = New System.Drawing.Size(248, 86)
  222.         Me.txtResult.TabIndex = 5
  223.         '
  224.         'lblError
  225.         '
  226.         Me.lblError.AutoSize = True
  227.         Me.lblError.Location = New System.Drawing.Point(268, 365)
  228.         Me.lblError.Name = "lblError"
  229.         Me.lblError.Size = New System.Drawing.Size(38, 13)
  230.         Me.lblError.TabIndex = 6
  231.         Me.lblError.Text = "Errore:"
  232.         '
  233.         'btnStop
  234.         '
  235.         Me.btnStop.Enabled = False
  236.         Me.btnStop.Location = New System.Drawing.Point(268, 218)
  237.         Me.btnStop.Name = "btnStop"
  238.         Me.btnStop.Size = New System.Drawing.Size(75, 23)
  239.         Me.btnStop.TabIndex = 7
  240.         Me.btnStop.Text = "Ferma"
  241.         Me.btnStop.UseVisualStyleBackColor = True
  242.         '
  243.         'Label7
  244.         '
  245.         Me.Label7.AutoSize = True
  246.         Me.Label7.Location = New System.Drawing.Point(265, 255)
  247.         Me.Label7.Name = "Label7"
  248.         Me.Label7.Size = New System.Drawing.Size(124, 13)
  249.         Me.Label7.TabIndex = 8
  250.         Me.Label7.Text = "Migliore soluzione fin'ora:"
  251.         '
  252.         'lblGeneration
  253.         '
  254.         Me.lblGeneration.AutoSize = True
  255.         Me.lblGeneration.Location = New System.Drawing.Point(268, 384)
  256.         Me.lblGeneration.Name = "lblGeneration"
  257.         Me.lblGeneration.Size = New System.Drawing.Size(108, 13)
  258.         Me.lblGeneration.TabIndex = 9
  259.         Me.lblGeneration.Text = "Numero generazione:"
  260.         '
  261.         'btnTryVariation
  262.         '
  263.         Me.btnTryVariation.Enabled = False
  264.         Me.btnTryVariation.Location = New System.Drawing.Point(441, 218)
  265.         Me.btnTryVariation.Name = "btnTryVariation"
  266.         Me.btnTryVariation.Size = New System.Drawing.Size(75, 23)
  267.         Me.btnTryVariation.TabIndex = 10
  268.         Me.btnTryVariation.Text = "Varia"
  269.         Me.btnTryVariation.UseVisualStyleBackColor = True
  270.         '
  271.         'btnEvaluate
  272.         '
  273.         Me.btnEvaluate.Location = New System.Drawing.Point(441, 363)
  274.         Me.btnEvaluate.Name = "btnEvaluate"
  275.         Me.btnEvaluate.Size = New System.Drawing.Size(75, 23)
  276.         Me.btnEvaluate.TabIndex = 11
  277.         Me.btnEvaluate.Text = "Valuta"
  278.         Me.btnEvaluate.UseVisualStyleBackColor = True
  279.         '
  280.         'Label8
  281.         '
  282.         Me.Label8.AutoSize = True
  283.         Me.Label8.Location = New System.Drawing.Point(12, 255)
  284.         Me.Label8.Name = "Label8"
  285.         Me.Label8.Size = New System.Drawing.Size(66, 13)
  286.         Me.Label8.TabIndex = 12
  287.         Me.Label8.Text = "Dati valutati:"
  288.         '
  289.         'dgvEvaluatedData
  290.         '
  291.         Me.dgvEvaluatedData.AllowUserToAddRows = False
  292.         Me.dgvEvaluatedData.AllowUserToDeleteRows = False
  293.         Me.dgvEvaluatedData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
  294.         Me.dgvEvaluatedData.Columns.AddRange(New System.Windows.Forms.DataGridViewColumn() {Me.Column1, Me.Column2})
  295.         Me.dgvEvaluatedData.Location = New System.Drawing.Point(15, 271)
  296.         Me.dgvEvaluatedData.Name = "dgvEvaluatedData"
  297.         Me.dgvEvaluatedData.ReadOnly = True
  298.         Me.dgvEvaluatedData.Size = New System.Drawing.Size(247, 126)
  299.         Me.dgvEvaluatedData.TabIndex = 13
  300.         '
  301.         'Column1
  302.         '
  303.         Me.Column1.HeaderText = "X"
  304.         Me.Column1.Name = "Column1"
  305.         Me.Column1.ReadOnly = True
  306.         '
  307.         'Column2
  308.         '
  309.         Me.Column2.HeaderText = "Y"
  310.         Me.Column2.Name = "Column2"
  311.         Me.Column2.ReadOnly = True
  312.         '
  313.         'Form1
  314.         '
  315.         Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
  316.         Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
  317.         Me.ClientSize = New System.Drawing.Size(528, 409)
  318.         Me.Controls.Add(Me.dgvEvaluatedData)
  319.         Me.Controls.Add(Me.Label8)
  320.         Me.Controls.Add(Me.btnEvaluate)
  321.         Me.Controls.Add(Me.btnTryVariation)
  322.         Me.Controls.Add(Me.lblGeneration)
  323.         Me.Controls.Add(Me.Label7)
  324.         Me.Controls.Add(Me.btnStop)
  325.         Me.Controls.Add(Me.lblError)
  326.         Me.Controls.Add(Me.txtResult)
  327.         Me.Controls.Add(Me.btnCalculate)
  328.         Me.Controls.Add(Me.grpOptions)
  329.         Me.Controls.Add(Me.dgvData)
  330.         Me.Controls.Add(Me.Label2)
  331.         Me.Controls.Add(Me.Label1)
  332.         Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle
  333.         Me.Name = "Form1"
  334.         Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
  335.         Me.Text = "GA Sequencer"
  336.         CType(Me.dgvData, System.ComponentModel.ISupportInitialize).EndInit()
  337.         Me.grpOptions.ResumeLayout(False)
  338.         Me.grpOptions.PerformLayout()
  339.         CType(Me.nudCrossovers, System.ComponentModel.ISupportInitialize).EndInit()
  340.         CType(Me.nudMaxTreeDepth, System.ComponentModel.ISupportInitialize).EndInit()
  341.         CType(Me.nudMutationProbability, System.ComponentModel.ISupportInitialize).EndInit()
  342.         CType(Me.nudPopulationSize, System.ComponentModel.ISupportInitialize).EndInit()
  343.         CType(Me.dgvEvaluatedData, System.ComponentModel.ISupportInitialize).EndInit()
  344.         Me.ResumeLayout(False)
  345.         Me.PerformLayout()
  346.  
  347.     End Sub
  348.     Friend WithEvents Label1 As System.Windows.Forms.Label
  349.     Friend WithEvents Label2 As System.Windows.Forms.Label
  350.     Friend WithEvents dgvData As System.Windows.Forms.DataGridView
  351.     Friend WithEvents clmX As System.Windows.Forms.DataGridViewTextBoxColumn
  352.     Friend WithEvents clmY As System.Windows.Forms.DataGridViewTextBoxColumn
  353.     Friend WithEvents grpOptions As System.Windows.Forms.GroupBox
  354.     Friend WithEvents nudPopulationSize As System.Windows.Forms.NumericUpDown
  355.     Friend WithEvents Label3 As System.Windows.Forms.Label
  356.     Friend WithEvents nudMutationProbability As System.Windows.Forms.NumericUpDown
  357.     Friend WithEvents Label4 As System.Windows.Forms.Label
  358.     Friend WithEvents nudMaxTreeDepth As System.Windows.Forms.NumericUpDown
  359.     Friend WithEvents Label5 As System.Windows.Forms.Label
  360.     Friend WithEvents Label6 As System.Windows.Forms.Label
  361.     Friend WithEvents nudCrossovers As System.Windows.Forms.NumericUpDown
  362.     Friend WithEvents chbElitism As System.Windows.Forms.CheckBox
  363.     Friend WithEvents btnCalculate As System.Windows.Forms.Button
  364.     Friend WithEvents txtResult As System.Windows.Forms.TextBox
  365.     Friend WithEvents lblError As System.Windows.Forms.Label
  366.     Friend WithEvents btnStop As System.Windows.Forms.Button
  367.     Friend WithEvents Label7 As System.Windows.Forms.Label
  368.     Friend WithEvents lblGeneration As System.Windows.Forms.Label
  369.     Friend WithEvents btnTryVariation As System.Windows.Forms.Button
  370.     Friend WithEvents btnEvaluate As System.Windows.Forms.Button
  371.     Friend WithEvents Label8 As System.Windows.Forms.Label
  372.     Friend WithEvents dgvEvaluatedData As System.Windows.Forms.DataGridView
  373.     Friend WithEvents Column1 As System.Windows.Forms.DataGridViewTextBoxColumn
  374.     Friend WithEvents Column2 As System.Windows.Forms.DataGridViewTextBoxColumn
  375.  
  376. End Class