Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/01/11 17:47:24 (13 years ago)
Author:
abeham
Message:

#1330

  • Worked on QAP
    • Added solution and analyzer
    • Added crude solution view
  • Overwrote instances with those from new QAPLIB site (Pennsylvania)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/QAP/HeuristicLab.Problems.QuadraticAssignment.Views/3.3/QuadraticAssignmentProblemView.Designer.cs

    r5563 r5583  
    4747      this.importInstanceButton = new System.Windows.Forms.Button();
    4848      this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
    49       this.label1 = new System.Windows.Forms.Label();
     49      this.QAPLIBInstancesLabel = new System.Windows.Forms.Label();
    5050      this.instancesComboBox = new System.Windows.Forms.ComboBox();
    5151      this.loadInstanceButton = new System.Windows.Forms.Button();
     
    8181      //
    8282      this.importInstanceButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
    83       this.importInstanceButton.Location = new System.Drawing.Point(375, 0);
     83      this.importInstanceButton.Location = new System.Drawing.Point(391, 0);
    8484      this.importInstanceButton.Name = "importInstanceButton";
    85       this.importInstanceButton.Size = new System.Drawing.Size(115, 23);
     85      this.importInstanceButton.Size = new System.Drawing.Size(99, 23);
    8686      this.importInstanceButton.TabIndex = 5;
    8787      this.importInstanceButton.Text = "Import...";
     
    9696      this.openFileDialog.Filter = "Dat files|*.dat|All files|*.*";
    9797      //
    98       // label1
     98      // QAPLIBInstancesLabel
    9999      //
    100       this.label1.AutoSize = true;
    101       this.label1.Location = new System.Drawing.Point(3, 5);
    102       this.label1.Name = "label1";
    103       this.label1.Size = new System.Drawing.Size(77, 13);
    104       this.label1.TabIndex = 6;
    105       this.label1.Text = "Load instance:";
     100      this.QAPLIBInstancesLabel.AutoSize = true;
     101      this.QAPLIBInstancesLabel.Cursor = System.Windows.Forms.Cursors.Hand;
     102      this.QAPLIBInstancesLabel.Location = new System.Drawing.Point(3, 5);
     103      this.QAPLIBInstancesLabel.Name = "QAPLIBInstancesLabel";
     104      this.QAPLIBInstancesLabel.Size = new System.Drawing.Size(96, 13);
     105      this.QAPLIBInstancesLabel.TabIndex = 6;
     106      this.QAPLIBInstancesLabel.Text = "QAPLIB instances:";
     107      this.toolTip.SetToolTip(this.QAPLIBInstancesLabel, "These instances were taken from the QAPLIB homepage at http://www.seas.upenn.edu/" +
     108              "qaplib/");
     109      this.QAPLIBInstancesLabel.Click += new System.EventHandler(this.QAPLIBInstancesLabel_Click);
    106110      //
    107111      // instancesComboBox
     
    111115      this.instancesComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
    112116      this.instancesComboBox.FormattingEnabled = true;
    113       this.instancesComboBox.Location = new System.Drawing.Point(86, 2);
     117      this.instancesComboBox.Location = new System.Drawing.Point(105, 2);
    114118      this.instancesComboBox.Name = "instancesComboBox";
    115       this.instancesComboBox.Size = new System.Drawing.Size(220, 21);
     119      this.instancesComboBox.Size = new System.Drawing.Size(201, 21);
    116120      this.instancesComboBox.TabIndex = 7;
    117121      this.instancesComboBox.SelectedValueChanged += new System.EventHandler(this.instancesComboBox_SelectedValueChanged);
     
    122126      this.loadInstanceButton.Location = new System.Drawing.Point(312, 0);
    123127      this.loadInstanceButton.Name = "loadInstanceButton";
    124       this.loadInstanceButton.Size = new System.Drawing.Size(57, 23);
     128      this.loadInstanceButton.Size = new System.Drawing.Size(73, 23);
    125129      this.loadInstanceButton.TabIndex = 5;
    126130      this.loadInstanceButton.Text = "Load";
    127131      this.loadInstanceButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     132      this.toolTip.SetToolTip(this.loadInstanceButton, "Load the selected QAPLIB instance.");
    128133      this.loadInstanceButton.UseVisualStyleBackColor = true;
    129134      this.loadInstanceButton.Click += new System.EventHandler(this.loadInstanceButton_Click);
     
    136141      this.Controls.Add(this.importInstanceButton);
    137142      this.Controls.Add(this.loadInstanceButton);
    138       this.Controls.Add(this.label1);
     143      this.Controls.Add(this.QAPLIBInstancesLabel);
    139144      this.Name = "QuadraticAssignmentProblemView";
    140145      this.Controls.SetChildIndex(this.descriptionLabel, 0);
    141146      this.Controls.SetChildIndex(this.nameLabel, 0);
    142147      this.Controls.SetChildIndex(this.nameTextBox, 0);
    143       this.Controls.SetChildIndex(this.label1, 0);
     148      this.Controls.SetChildIndex(this.QAPLIBInstancesLabel, 0);
    144149      this.Controls.SetChildIndex(this.descriptionTextBox, 0);
    145150      this.Controls.SetChildIndex(this.loadInstanceButton, 0);
     
    157162    private System.Windows.Forms.Button importInstanceButton;
    158163    private System.Windows.Forms.OpenFileDialog openFileDialog;
    159     private System.Windows.Forms.Label label1;
     164    private System.Windows.Forms.Label QAPLIBInstancesLabel;
    160165    private System.Windows.Forms.ComboBox instancesComboBox;
    161166    private System.Windows.Forms.Button loadInstanceButton;
Note: See TracChangeset for help on using the changeset viewer.