- Timestamp:
- 02/03/11 23:36:56 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PSO/HeuristicLab.Algorithms.ParticleSwarmOptimization/3.3/ParticleSwarmOptimization.cs
r5410 r5418 181 181 Placeholder topologyUpdaterPlaceholder = new Placeholder(); 182 182 UniformSubScopesProcessor uniformSubscopesProcessor2 = new UniformSubScopesProcessor(); 183 UniformSubScopesProcessor evaluationProcessor = new UniformSubScopesProcessor(); 183 184 NeighborUpdater neighborUpdater2 = new NeighborUpdater(); 184 185 Placeholder evaluatorPlaceholder2 = new Placeholder(); … … 227 228 228 229 uniformSubScopeProcessor.Operator = particleUpdaterPlaceholder; 229 uniformSubScopeProcessor.Successor = topologyUpdaterPlaceholder;230 uniformSubScopeProcessor.Successor = evaluationProcessor; 230 231 231 232 particleUpdaterPlaceholder.Name = "(ParticleUpdater)"; 232 233 particleUpdaterPlaceholder.OperatorParameter.ActualName = "ParticleUpdater"; 233 particleUpdaterPlaceholder.Successor = evaluatorPlaceholder2; 234 235 evaluationProcessor.Parallel = new BoolValue(true); 236 evaluationProcessor.Operator = evaluatorPlaceholder2; 237 evaluationProcessor.Successor = topologyUpdaterPlaceholder; 234 238 235 239 evaluatorPlaceholder2.Name = "(Evaluator)";
Note: See TracChangeset
for help on using the changeset viewer.