Free cookie consent management tool by TermsFeed Policy Generator

Changeset 7394


Ignore:
Timestamp:
01/22/12 22:53:53 (12 years ago)
Author:
ascheibe
Message:

#1745 fixed typos

Location:
branches/HiveHiveEngine
Files:
1 added
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • branches/HiveHiveEngine/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/ParallelIslandGeneticAlgorithmMainLoop.cs

    r7392 r7394  
    158158      VariableCreator islandVariableCreator = new VariableCreator();
    159159      Placeholder islandAnalyzer1 = new Placeholder();
    160       LocalRandomGenerator localRandomGenerator = new LocalRandomGenerator();
     160      LocalRandomCreator localRandomCreator = new LocalRandomCreator();
    161161      Placeholder analyzer1 = new Placeholder();
    162162      ResultsCollector resultsCollector1 = new ResultsCollector();
     
    313313      uniformSubScopesProcessor0.Successor = analyzer1;
    314314      islandVariableCreator.Successor = islandAnalyzer1;
    315       islandAnalyzer1.Successor = localRandomGenerator;
    316       localRandomGenerator.Successor = null;
     315      islandAnalyzer1.Successor = localRandomCreator;
     316      localRandomCreator.Successor = null;
    317317      analyzer1.Successor = resultsCollector1;
    318318      resultsCollector1.Successor = uniformSubScopesProcessor1;
  • branches/HiveHiveEngine/HeuristicLab.Operators.Views/3.3/ReductionOperationView.Designer.cs

    r7393 r7394  
    5454      this.valueLabel.Location = new System.Drawing.Point(3, 3);
    5555      this.valueLabel.Name = "valueLabel";
    56       this.valueLabel.Size = new System.Drawing.Size(34, 13);
     56      this.valueLabel.Size = new System.Drawing.Size(56, 13);
    5757      this.valueLabel.TabIndex = 0;
    58       this.valueLabel.Text = "&Type:";
     58      this.valueLabel.Text = "&Operation:";
    5959      //
    6060      // valueComboBox
    6161      //
    62       this.valueComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
    63                   | System.Windows.Forms.AnchorStyles.Right)));
     62      this.valueComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
     63            | System.Windows.Forms.AnchorStyles.Right)));
    6464      this.valueComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
    6565      this.valueComboBox.Enabled = false;
    6666      this.valueComboBox.FormattingEnabled = true;
    67       this.valueComboBox.Location = new System.Drawing.Point(46, 0);
     67      this.valueComboBox.Location = new System.Drawing.Point(65, 0);
    6868      this.valueComboBox.Name = "valueComboBox";
    69       this.valueComboBox.Size = new System.Drawing.Size(219, 21);
     69      this.valueComboBox.Size = new System.Drawing.Size(212, 21);
    7070      this.valueComboBox.TabIndex = 1;
    7171      this.valueComboBox.SelectedIndexChanged += new System.EventHandler(this.valueComboBox_SelectedIndexChanged);
    7272      //
    73       // PermutationTypeView
     73      // ReductionOperationView
    7474      //
    7575      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     
    7878      this.Controls.Add(this.valueLabel);
    7979      this.Name = "ReductionOperationView";
    80       this.Size = new System.Drawing.Size(265, 29);
     80      this.Size = new System.Drawing.Size(277, 29);
    8181      this.ResumeLayout(false);
    8282      this.PerformLayout();
  • branches/HiveHiveEngine/HeuristicLab.Operators/3.3/HeuristicLab.Operators-3.3.csproj

    r7392 r7394  
    118118    <Compile Include="Assigner.cs" />
    119119    <Compile Include="AlgorithmOperator.cs" />
    120     <Compile Include="LocalRandomGenerator.cs" />
     120    <Compile Include="LocalRandomCreator.cs" />
    121121    <Compile Include="DataReducer.cs" />
    122122    <Compile Include="ReductionOperation.cs" />
Note: See TracChangeset for help on using the changeset viewer.