Changeset 7394 for branches/HiveHiveEngine
- Timestamp:
- 01/22/12 22:53:53 (13 years ago)
- 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 158 158 VariableCreator islandVariableCreator = new VariableCreator(); 159 159 Placeholder islandAnalyzer1 = new Placeholder(); 160 LocalRandom Generator localRandomGenerator = new LocalRandomGenerator();160 LocalRandomCreator localRandomCreator = new LocalRandomCreator(); 161 161 Placeholder analyzer1 = new Placeholder(); 162 162 ResultsCollector resultsCollector1 = new ResultsCollector(); … … 313 313 uniformSubScopesProcessor0.Successor = analyzer1; 314 314 islandVariableCreator.Successor = islandAnalyzer1; 315 islandAnalyzer1.Successor = localRandom Generator;316 localRandom Generator.Successor = null;315 islandAnalyzer1.Successor = localRandomCreator; 316 localRandomCreator.Successor = null; 317 317 analyzer1.Successor = resultsCollector1; 318 318 resultsCollector1.Successor = uniformSubScopesProcessor1; -
branches/HiveHiveEngine/HeuristicLab.Operators.Views/3.3/ReductionOperationView.Designer.cs
r7393 r7394 54 54 this.valueLabel.Location = new System.Drawing.Point(3, 3); 55 55 this.valueLabel.Name = "valueLabel"; 56 this.valueLabel.Size = new System.Drawing.Size( 34, 13);56 this.valueLabel.Size = new System.Drawing.Size(56, 13); 57 57 this.valueLabel.TabIndex = 0; 58 this.valueLabel.Text = "& Type:";58 this.valueLabel.Text = "&Operation:"; 59 59 // 60 60 // valueComboBox 61 61 // 62 this.valueComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 63 62 this.valueComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 63 | System.Windows.Forms.AnchorStyles.Right))); 64 64 this.valueComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; 65 65 this.valueComboBox.Enabled = false; 66 66 this.valueComboBox.FormattingEnabled = true; 67 this.valueComboBox.Location = new System.Drawing.Point( 46, 0);67 this.valueComboBox.Location = new System.Drawing.Point(65, 0); 68 68 this.valueComboBox.Name = "valueComboBox"; 69 this.valueComboBox.Size = new System.Drawing.Size(21 9, 21);69 this.valueComboBox.Size = new System.Drawing.Size(212, 21); 70 70 this.valueComboBox.TabIndex = 1; 71 71 this.valueComboBox.SelectedIndexChanged += new System.EventHandler(this.valueComboBox_SelectedIndexChanged); 72 72 // 73 // PermutationTypeView73 // ReductionOperationView 74 74 // 75 75 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); … … 78 78 this.Controls.Add(this.valueLabel); 79 79 this.Name = "ReductionOperationView"; 80 this.Size = new System.Drawing.Size(2 65, 29);80 this.Size = new System.Drawing.Size(277, 29); 81 81 this.ResumeLayout(false); 82 82 this.PerformLayout(); -
branches/HiveHiveEngine/HeuristicLab.Operators/3.3/HeuristicLab.Operators-3.3.csproj
r7392 r7394 118 118 <Compile Include="Assigner.cs" /> 119 119 <Compile Include="AlgorithmOperator.cs" /> 120 <Compile Include="LocalRandom Generator.cs" />120 <Compile Include="LocalRandomCreator.cs" /> 121 121 <Compile Include="DataReducer.cs" /> 122 122 <Compile Include="ReductionOperation.cs" />
Note: See TracChangeset
for help on using the changeset viewer.