Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/06/12 01:43:06 (12 years ago)
Author:
abeham
Message:

#1782: trunk integration of problem instance development

  • Adapted TSP and QAP to use the new feature
  • Moved the TSPLIB importer dialog from the TSP plugin to the TSPLIB instances plugin (created a view for that provider)
  • Created it as a default view for IHeuristicOptimizationProblem in order not to interfere with other problems do not yet work with this
File:
1 copied

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Optimization.Views/3.3/ProblemInstanceProviderView.Designer.cs

    r7551 r7558  
    2020#endregion
    2121
    22 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Views {
     22namespace HeuristicLab.Optimization.Views {
    2323  partial class ProblemInstanceProviderView<T> {
    2424    /// <summary>
     
    4747      this.components = new System.ComponentModel.Container();
    4848      this.loadButton = new System.Windows.Forms.Button();
    49       this.label2 = new System.Windows.Forms.Label();
     49      this.instanceLabel = new System.Windows.Forms.Label();
    5050      this.instancesComboBox = new System.Windows.Forms.ComboBox();
    5151      this.importButton = new System.Windows.Forms.Button();
     
    6565      this.loadButton.Click += new System.EventHandler(this.loadButton_Click);
    6666      //
    67       // label2
     67      // instanceLabel
    6868      //
    69       this.label2.AutoSize = true;
    70       this.label2.Location = new System.Drawing.Point(-3, 3);
    71       this.label2.Name = "label2";
    72       this.label2.Size = new System.Drawing.Size(51, 13);
    73       this.label2.TabIndex = 4;
    74       this.label2.Text = "Instance:";
     69      this.instanceLabel.AutoSize = true;
     70      this.instanceLabel.Location = new System.Drawing.Point(-3, 3);
     71      this.instanceLabel.Name = "instanceLabel";
     72      this.instanceLabel.Size = new System.Drawing.Size(51, 13);
     73      this.instanceLabel.TabIndex = 4;
     74      this.instanceLabel.Text = "Instance:";
    7575      //
    7676      // instancesComboBox
     
    109109      this.Controls.Add(this.importButton);
    110110      this.Controls.Add(this.loadButton);
    111       this.Controls.Add(this.label2);
     111      this.Controls.Add(this.instanceLabel);
    112112      this.Name = "ProblemInstanceProviderView";
    113113      this.Size = new System.Drawing.Size(610, 21);
     
    119119    #endregion
    120120
    121     private System.Windows.Forms.Button loadButton;
    122     private System.Windows.Forms.Label label2;
    123     private System.Windows.Forms.ComboBox instancesComboBox;
    124     private System.Windows.Forms.Button importButton;
    125121    private System.Windows.Forms.OpenFileDialog openFileDialog;
    126122    private System.Windows.Forms.ToolTip toolTip;
     123    protected System.Windows.Forms.Button loadButton;
     124    protected System.Windows.Forms.Label instanceLabel;
     125    protected System.Windows.Forms.ComboBox instancesComboBox;
     126    protected System.Windows.Forms.Button importButton;
    127127
    128128  }
Note: See TracChangeset for help on using the changeset viewer.