Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/22/11 14:54:17 (13 years ago)
Author:
abeham
Message:

#1541

  • Fixed permutation view and changed label
  • Fixed problem in the RTS operator when all moves are tabu (the original code continues when all moves are tabu, so this is also the case here)
  • Changed the Analyzer parameter type in RTS, a FixedValueParameter is not appropriate for operator parameters
Location:
trunk/sources/HeuristicLab.Encodings.PermutationEncoding.Views/3.3
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Encodings.PermutationEncoding.Views/3.3/PermutationTypeView.Designer.cs

    r5445 r7040  
    5454      this.valueLabel.Location = new System.Drawing.Point(3, 3);
    5555      this.valueLabel.Name = "valueLabel";
    56       this.valueLabel.Size = new System.Drawing.Size(37, 13);
     56      this.valueLabel.Size = new System.Drawing.Size(34, 13);
    5757      this.valueLabel.TabIndex = 0;
    58       this.valueLabel.Text = "&Value:";
     58      this.valueLabel.Text = "&Type:";
    5959      //
    6060      // valueComboBox
     
    7171      this.valueComboBox.SelectedIndexChanged += new System.EventHandler(this.valueComboBox_SelectedIndexChanged);
    7272      //
    73       // ComparisonView
     73      // PermutationTypeView
    7474      //
    7575      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     
    7777      this.Controls.Add(this.valueComboBox);
    7878      this.Controls.Add(this.valueLabel);
    79       this.Name = "ComparisonView";
     79      this.Name = "PermutationTypeView";
    8080      this.Size = new System.Drawing.Size(265, 29);
    8181      this.ResumeLayout(false);
  • trunk/sources/HeuristicLab.Encodings.PermutationEncoding.Views/3.3/PermutationView.Designer.cs

    r6628 r7040  
    7272      this.Controls.Add(this.permutationTypeView);
    7373      this.Name = "PermutationView";
    74       this.Controls.SetChildIndex(this.permutationTypeView, 0);
    7574      this.Controls.SetChildIndex(this.lengthLabel, 0);
    7675      this.Controls.SetChildIndex(this.lengthTextBox, 0);
     76      this.Controls.SetChildIndex(this.permutationTypeView, 0);
    7777      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
    7878      this.ResumeLayout(false);
  • trunk/sources/HeuristicLab.Encodings.PermutationEncoding.Views/3.3/PermutationView.cs

    r6628 r7040  
    3737      InitializeComponent();
    3838      dataGridView.Top = permutationTypeView.Bottom + permutationTypeView.Margin.Bottom + dataGridView.Margin.Top;
     39      dataGridView.Height = Bottom - dataGridView.Top;
    3940    }
    4041
Note: See TracChangeset for help on using the changeset viewer.