Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/02/11 22:33:30 (13 years ago)
Author:
abeham
Message:

#1330

  • Updated solution view
  • Made distance matrix a mandatory parameter (solution instances are small anyway)
  • Added and set best known solution if available for a QAPLIB instance
File:
1 edited

Legend:

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

    r5583 r5598  
    3333      this.assignmentGroupBox = new System.Windows.Forms.GroupBox();
    3434      this.assignmentViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
     35      this.weightsRadioButton = new System.Windows.Forms.RadioButton();
     36      this.distancesRadioButton = new System.Windows.Forms.RadioButton();
    3537      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
    3638      this.splitContainer.Panel1.SuspendLayout();
     
    108110      // visualizationTabPage
    109111      //
     112      this.visualizationTabPage.Controls.Add(this.distancesRadioButton);
     113      this.visualizationTabPage.Controls.Add(this.weightsRadioButton);
    110114      this.visualizationTabPage.Controls.Add(this.pictureBox);
    111115      this.visualizationTabPage.Location = new System.Drawing.Point(4, 22);
     
    124128      this.pictureBox.BackColor = System.Drawing.Color.White;
    125129      this.pictureBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
    126       this.pictureBox.Location = new System.Drawing.Point(6, 6);
     130      this.pictureBox.Location = new System.Drawing.Point(84, 6);
    127131      this.pictureBox.Name = "pictureBox";
    128       this.pictureBox.Size = new System.Drawing.Size(516, 269);
     132      this.pictureBox.Size = new System.Drawing.Size(438, 269);
    129133      this.pictureBox.TabIndex = 0;
    130134      this.pictureBox.TabStop = false;
     
    170174      this.assignmentViewHost.ViewsLabelVisible = true;
    171175      this.assignmentViewHost.ViewType = null;
     176      //
     177      // weightsRadioButton
     178      //
     179      this.weightsRadioButton.AutoSize = true;
     180      this.weightsRadioButton.Location = new System.Drawing.Point(6, 29);
     181      this.weightsRadioButton.Name = "weightsRadioButton";
     182      this.weightsRadioButton.Size = new System.Drawing.Size(64, 17);
     183      this.weightsRadioButton.TabIndex = 1;
     184      this.weightsRadioButton.Text = "Weights";
     185      this.weightsRadioButton.UseVisualStyleBackColor = true;
     186      this.weightsRadioButton.CheckedChanged += new System.EventHandler(this.radioButton_CheckedChanged);
     187      //
     188      // distancesRadioButton
     189      //
     190      this.distancesRadioButton.AutoSize = true;
     191      this.distancesRadioButton.Checked = true;
     192      this.distancesRadioButton.Location = new System.Drawing.Point(6, 6);
     193      this.distancesRadioButton.Name = "distancesRadioButton";
     194      this.distancesRadioButton.Size = new System.Drawing.Size(72, 17);
     195      this.distancesRadioButton.TabIndex = 2;
     196      this.distancesRadioButton.TabStop = true;
     197      this.distancesRadioButton.Text = "Distances";
     198      this.distancesRadioButton.UseVisualStyleBackColor = true;
     199      this.distancesRadioButton.CheckedChanged += new System.EventHandler(this.radioButton_CheckedChanged);
    172200      //
    173201      // QAPAssignmentView
     
    185213      this.tabControl.ResumeLayout(false);
    186214      this.visualizationTabPage.ResumeLayout(false);
     215      this.visualizationTabPage.PerformLayout();
    187216      ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
    188217      this.valueTabPage.ResumeLayout(false);
     
    203232    private System.Windows.Forms.GroupBox assignmentGroupBox;
    204233    private MainForm.WindowsForms.ViewHost assignmentViewHost;
     234    private System.Windows.Forms.RadioButton distancesRadioButton;
     235    private System.Windows.Forms.RadioButton weightsRadioButton;
    205236  }
    206237}
Note: See TracChangeset for help on using the changeset viewer.