[3348] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[5445] | 3 | * Copyright (C) 2002-2011 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[3348] | 4 | *
|
---|
| 5 | * This file is part of HeuristicLab.
|
---|
| 6 | *
|
---|
| 7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
| 8 | * it under the terms of the GNU General Public License as published by
|
---|
| 9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
| 10 | * (at your option) any later version.
|
---|
| 11 | *
|
---|
| 12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 15 | * GNU General Public License for more details.
|
---|
| 16 | *
|
---|
| 17 | * You should have received a copy of the GNU General Public License
|
---|
| 18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 19 | */
|
---|
| 20 | #endregion
|
---|
| 21 |
|
---|
| 22 | using System;
|
---|
| 23 | using System.Linq;
|
---|
[4068] | 24 | using HeuristicLab.Analysis;
|
---|
[3376] | 25 | using HeuristicLab.Common;
|
---|
[3348] | 26 | using HeuristicLab.Core;
|
---|
| 27 | using HeuristicLab.Data;
|
---|
[4068] | 28 | using HeuristicLab.Operators;
|
---|
[3348] | 29 | using HeuristicLab.Optimization;
|
---|
| 30 | using HeuristicLab.Optimization.Operators;
|
---|
| 31 | using HeuristicLab.Parameters;
|
---|
| 32 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
[5209] | 33 | using HeuristicLab.PluginInfrastructure;
|
---|
[3368] | 34 | using HeuristicLab.Random;
|
---|
[3348] | 35 |
|
---|
| 36 | namespace HeuristicLab.Algorithms.ParticleSwarmOptimization {
|
---|
[5209] | 37 | [Item("Particle Swarm Optimization", "A particle swarm optimization algorithm based on the description in Pedersen, M.E.H. (2010). PhD thesis. University of Southampton.")]
|
---|
[3348] | 38 | [Creatable("Algorithms")]
|
---|
| 39 | [StorableClass]
|
---|
[5435] | 40 | public sealed class ParticleSwarmOptimization : EngineAlgorithm, IStorableContent {
|
---|
[5033] | 41 |
|
---|
[3348] | 42 | #region Problem Properties
|
---|
| 43 | public override Type ProblemType {
|
---|
| 44 | get { return typeof(ISingleObjectiveProblem); }
|
---|
| 45 | }
|
---|
| 46 | public new ISingleObjectiveProblem Problem {
|
---|
| 47 | get { return (ISingleObjectiveProblem)base.Problem; }
|
---|
| 48 | set { base.Problem = value; }
|
---|
| 49 | }
|
---|
[3682] | 50 | public MultiAnalyzer Analyzer {
|
---|
| 51 | get { return AnalyzerParameter.Value; }
|
---|
| 52 | set { AnalyzerParameter.Value = value; }
|
---|
| 53 | }
|
---|
[5560] | 54 | public IDiscreteDoubleValueModifier InertiaUpdater {
|
---|
| 55 | get { return InertiaUpdaterParameter.Value; }
|
---|
| 56 | set { InertiaUpdaterParameter.Value = value; }
|
---|
[5225] | 57 | }
|
---|
[4068] | 58 | #endregion
|
---|
[3348] | 59 |
|
---|
| 60 | #region Parameter Properties
|
---|
[5410] | 61 | public IValueParameter<IntValue> SeedParameter {
|
---|
| 62 | get { return (IValueParameter<IntValue>)Parameters["Seed"]; }
|
---|
[3348] | 63 | }
|
---|
[5410] | 64 | public IValueParameter<BoolValue> SetSeedRandomlyParameter {
|
---|
| 65 | get { return (IValueParameter<BoolValue>)Parameters["SetSeedRandomly"]; }
|
---|
[3348] | 66 | }
|
---|
[5410] | 67 | public IValueParameter<IntValue> SwarmSizeParameter {
|
---|
| 68 | get { return (IValueParameter<IntValue>)Parameters["SwarmSize"]; }
|
---|
[3348] | 69 | }
|
---|
[5410] | 70 | public IValueParameter<IntValue> MaxIterationsParameter {
|
---|
| 71 | get { return (IValueParameter<IntValue>)Parameters["MaxIterations"]; }
|
---|
[3348] | 72 | }
|
---|
[5560] | 73 | public IValueParameter<DoubleValue> InertiaParameter {
|
---|
| 74 | get { return (IValueParameter<DoubleValue>)Parameters["Inertia"]; }
|
---|
[3348] | 75 | }
|
---|
[5560] | 76 | public IValueParameter<DoubleValue> PersonalBestAttractionParameter {
|
---|
| 77 | get { return (IValueParameter<DoubleValue>)Parameters["PersonalBestAttraction"]; }
|
---|
[5033] | 78 | }
|
---|
[5568] | 79 | public IValueParameter<DoubleValue> NeighborBestAttractionParameter {
|
---|
| 80 | get { return (IValueParameter<DoubleValue>)Parameters["NeighborBestAttraction"]; }
|
---|
[5033] | 81 | }
|
---|
[5410] | 82 | public IValueParameter<MultiAnalyzer> AnalyzerParameter {
|
---|
| 83 | get { return (IValueParameter<MultiAnalyzer>)Parameters["Analyzer"]; }
|
---|
[3682] | 84 | }
|
---|
[5560] | 85 | public ConstrainedValueParameter<IParticleCreator> ParticleCreatorParameter {
|
---|
| 86 | get { return (ConstrainedValueParameter<IParticleCreator>)Parameters["ParticleCreator"]; }
|
---|
[5033] | 87 | }
|
---|
[5209] | 88 | public ConstrainedValueParameter<IParticleUpdater> ParticleUpdaterParameter {
|
---|
| 89 | get { return (ConstrainedValueParameter<IParticleUpdater>)Parameters["ParticleUpdater"]; }
|
---|
| 90 | }
|
---|
[5410] | 91 | public OptionalConstrainedValueParameter<ITopologyInitializer> TopologyInitializerParameter {
|
---|
| 92 | get { return (OptionalConstrainedValueParameter<ITopologyInitializer>)Parameters["TopologyInitializer"]; }
|
---|
[5209] | 93 | }
|
---|
[5410] | 94 | public OptionalConstrainedValueParameter<ITopologyUpdater> TopologyUpdaterParameter {
|
---|
| 95 | get { return (OptionalConstrainedValueParameter<ITopologyUpdater>)Parameters["TopologyUpdater"]; }
|
---|
[5209] | 96 | }
|
---|
[5560] | 97 | public OptionalConstrainedValueParameter<IDiscreteDoubleValueModifier> InertiaUpdaterParameter {
|
---|
| 98 | get { return (OptionalConstrainedValueParameter<IDiscreteDoubleValueModifier>)Parameters["InertiaUpdater"]; }
|
---|
[5225] | 99 | }
|
---|
[5568] | 100 | public ConstrainedValueParameter<ISwarmUpdater> SwarmUpdaterParameter {
|
---|
| 101 | get { return (ConstrainedValueParameter<ISwarmUpdater>)Parameters["SwarmUpdater"]; }
|
---|
| 102 |
|
---|
| 103 | }
|
---|
[3348] | 104 | #endregion
|
---|
| 105 |
|
---|
| 106 | #region Properties
|
---|
[5316] | 107 |
|
---|
| 108 | public string Filename { get; set; }
|
---|
| 109 |
|
---|
[3719] | 110 | [Storable]
|
---|
[3682] | 111 | private BestAverageWorstQualityAnalyzer qualityAnalyzer;
|
---|
[5342] | 112 |
|
---|
[5560] | 113 | [Storable]
|
---|
| 114 | private SolutionsCreator solutionsCreator;
|
---|
| 115 |
|
---|
| 116 | [Storable]
|
---|
| 117 | private ParticleSwarmOptimizationMainLoop mainLoop;
|
---|
| 118 |
|
---|
[5342] | 119 | public ITopologyInitializer TopologyInitializer {
|
---|
| 120 | get { return TopologyInitializerParameter.Value; }
|
---|
| 121 | set { TopologyInitializerParameter.Value = value; }
|
---|
| 122 | }
|
---|
| 123 |
|
---|
| 124 | public ITopologyUpdater TopologyUpdater {
|
---|
| 125 | get { return TopologyUpdaterParameter.Value; }
|
---|
| 126 | set { TopologyUpdaterParameter.Value = value; }
|
---|
| 127 | }
|
---|
| 128 |
|
---|
[5560] | 129 | public IParticleCreator ParticleCreator {
|
---|
| 130 | get { return ParticleCreatorParameter.Value; }
|
---|
| 131 | set { ParticleCreatorParameter.Value = value; }
|
---|
| 132 | }
|
---|
| 133 |
|
---|
[5342] | 134 | public IParticleUpdater ParticleUpdater {
|
---|
| 135 | get { return ParticleUpdaterParameter.Value; }
|
---|
| 136 | set { ParticleUpdaterParameter.Value = value; }
|
---|
| 137 | }
|
---|
[3348] | 138 | #endregion
|
---|
| 139 |
|
---|
[5033] | 140 | [StorableConstructor]
|
---|
[5435] | 141 | private ParticleSwarmOptimization(bool deserializing) : base(deserializing) { }
|
---|
| 142 | private ParticleSwarmOptimization(ParticleSwarmOptimization original, Cloner cloner)
|
---|
[5033] | 143 | : base(original, cloner) {
|
---|
| 144 | qualityAnalyzer = cloner.Clone(original.qualityAnalyzer);
|
---|
[5560] | 145 | solutionsCreator = cloner.Clone(original.solutionsCreator);
|
---|
[5561] | 146 | mainLoop = cloner.Clone(original.mainLoop);
|
---|
[5342] | 147 | Initialize();
|
---|
[5033] | 148 | }
|
---|
[3348] | 149 | public ParticleSwarmOptimization()
|
---|
| 150 | : base() {
|
---|
| 151 | Parameters.Add(new ValueParameter<IntValue>("Seed", "The random seed used to initialize the new pseudo random number generator.", new IntValue(0)));
|
---|
| 152 | Parameters.Add(new ValueParameter<BoolValue>("SetSeedRandomly", "True if the random seed should be set to a random value, otherwise false.", new BoolValue(true)));
|
---|
[3724] | 153 | Parameters.Add(new ValueParameter<IntValue>("SwarmSize", "Size of the particle swarm.", new IntValue(10)));
|
---|
[3348] | 154 | Parameters.Add(new ValueParameter<IntValue>("MaxIterations", "Maximal number of iterations.", new IntValue(1000)));
|
---|
[3682] | 155 | Parameters.Add(new ValueParameter<MultiAnalyzer>("Analyzer", "The operator used to analyze each generation.", new MultiAnalyzer()));
|
---|
[5560] | 156 | Parameters.Add(new ValueParameter<DoubleValue>("Inertia", "Inertia weight on a particle's movement (omega).", new DoubleValue(-0.2)));
|
---|
| 157 | Parameters.Add(new ValueParameter<DoubleValue>("PersonalBestAttraction", "Weight for particle's pull towards its personal best soution (phi_p).", new DoubleValue(-0.01)));
|
---|
[5568] | 158 | Parameters.Add(new ValueParameter<DoubleValue>("NeighborBestAttraction", "Weight for pull towards the neighborhood best solution or global best solution in case of a totally connected topology (phi_g).", new DoubleValue(3.7)));
|
---|
[5560] | 159 | Parameters.Add(new ConstrainedValueParameter<IParticleCreator>("ParticleCreator", "Operator creates a new particle."));
|
---|
| 160 | Parameters.Add(new ConstrainedValueParameter<IParticleUpdater>("ParticleUpdater", "Operator that updates a particle."));
|
---|
| 161 | Parameters.Add(new OptionalConstrainedValueParameter<ITopologyInitializer>("TopologyInitializer", "Creates neighborhood description vectors."));
|
---|
| 162 | Parameters.Add(new OptionalConstrainedValueParameter<ITopologyUpdater>("TopologyUpdater", "Updates the neighborhood description vectors."));
|
---|
| 163 | Parameters.Add(new OptionalConstrainedValueParameter<IDiscreteDoubleValueModifier>("InertiaUpdater", "Updates the omega parameter."));
|
---|
[5568] | 164 | Parameters.Add(new ConstrainedValueParameter<ISwarmUpdater>("SwarmUpdater", "Encoding-specific parameter which is provided by the problem. May provide additional encoding-specific parameters, such as velocity bounds for real valued problems"));
|
---|
[5033] | 165 |
|
---|
[3348] | 166 | RandomCreator randomCreator = new RandomCreator();
|
---|
[5033] | 167 | VariableCreator variableCreator = new VariableCreator();
|
---|
[5645] | 168 | Assigner assigner = new Assigner();
|
---|
[5560] | 169 | solutionsCreator = new SolutionsCreator();
|
---|
[5643] | 170 | SubScopesCounter subScopesCounter = new SubScopesCounter();
|
---|
[5209] | 171 | Placeholder topologyInitializerPlaceholder = new Placeholder();
|
---|
[5033] | 172 | Placeholder analyzerPlaceholder = new Placeholder();
|
---|
[5560] | 173 | mainLoop = new ParticleSwarmOptimizationMainLoop();
|
---|
[3348] | 174 |
|
---|
[5033] | 175 | OperatorGraph.InitialOperator = randomCreator;
|
---|
[3682] | 176 |
|
---|
[5033] | 177 | randomCreator.SetSeedRandomlyParameter.Value = null;
|
---|
[3348] | 178 | randomCreator.SeedParameter.Value = null;
|
---|
[5033] | 179 | randomCreator.Successor = variableCreator;
|
---|
[4068] | 180 |
|
---|
[5033] | 181 | variableCreator.CollectedValues.Add(new ValueParameter<IntValue>("CurrentIteration", new IntValue(0)));
|
---|
[5643] | 182 | variableCreator.CollectedValues.Add(new ValueParameter<DoubleValue>("CurrentVelocityBounds", new DoubleValue(0)));
|
---|
[5645] | 183 | variableCreator.Successor = assigner;
|
---|
[4068] | 184 |
|
---|
[5645] | 185 | assigner.Name = "CurrentInertia := Inertia";
|
---|
| 186 | assigner.LeftSideParameter.ActualName = "CurrentInertia";
|
---|
| 187 | assigner.RightSideParameter.ActualName = "Inertia";
|
---|
| 188 | assigner.Successor = solutionsCreator;
|
---|
| 189 |
|
---|
[5033] | 190 | solutionsCreator.NumberOfSolutionsParameter.ActualName = "SwarmSize";
|
---|
[5568] | 191 | ParameterizeSolutionsCreator();
|
---|
[5643] | 192 | solutionsCreator.Successor = subScopesCounter;
|
---|
[4068] | 193 |
|
---|
[5643] | 194 | subScopesCounter.Name = "Initialize EvaluatedSolutions";
|
---|
| 195 | subScopesCounter.ValueParameter.ActualName = "EvaluatedSolutions";
|
---|
| 196 | subScopesCounter.Successor = topologyInitializerPlaceholder;
|
---|
| 197 |
|
---|
[5209] | 198 | topologyInitializerPlaceholder.Name = "(TopologyInitializer)";
|
---|
| 199 | topologyInitializerPlaceholder.OperatorParameter.ActualName = "TopologyInitializer";
|
---|
[5568] | 200 | topologyInitializerPlaceholder.Successor = mainLoop;
|
---|
[5209] | 201 |
|
---|
[5560] | 202 | mainLoop.AnalyzerParameter.ActualName = AnalyzerParameter.Name;
|
---|
[5645] | 203 | mainLoop.InertiaParameter.ActualName = "CurrentInertia";
|
---|
[5560] | 204 | mainLoop.MaxIterationsParameter.ActualName = MaxIterationsParameter.Name;
|
---|
[5568] | 205 | mainLoop.NeighborBestAttractionParameter.ActualName = NeighborBestAttractionParameter.Name;
|
---|
[5560] | 206 | mainLoop.InertiaUpdaterParameter.ActualName = InertiaUpdaterParameter.Name;
|
---|
| 207 | mainLoop.ParticleUpdaterParameter.ActualName = ParticleUpdaterParameter.Name;
|
---|
| 208 | mainLoop.PersonalBestAttractionParameter.ActualName = PersonalBestAttractionParameter.Name;
|
---|
| 209 | mainLoop.RandomParameter.ActualName = randomCreator.RandomParameter.ActualName;
|
---|
[5568] | 210 | mainLoop.SwarmSizeParameter.ActualName = SwarmSizeParameter.Name;
|
---|
| 211 | mainLoop.TopologyUpdaterParameter.ActualName = TopologyUpdaterParameter.Name;
|
---|
[5560] | 212 | mainLoop.RandomParameter.ActualName = randomCreator.RandomParameter.ActualName;
|
---|
| 213 | mainLoop.ResultsParameter.ActualName = "Results";
|
---|
[3682] | 214 |
|
---|
[3719] | 215 | InitializeAnalyzers();
|
---|
[5560] | 216 | InitializeParticleCreator();
|
---|
[5561] | 217 | InitializeSwarmUpdater();
|
---|
[5568] | 218 | ParameterizeSolutionsCreator();
|
---|
[3719] | 219 | UpdateAnalyzers();
|
---|
[5560] | 220 | UpdateInertiaUpdater();
|
---|
| 221 | InitInertiaUpdater();
|
---|
[5410] | 222 | UpdateTopologyInitializer();
|
---|
[5342] | 223 | Initialize();
|
---|
[5568] | 224 | ParameterizeMainLoop();
|
---|
[3348] | 225 | }
|
---|
| 226 |
|
---|
[5410] | 227 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 228 | return new ParticleSwarmOptimization(this, cloner);
|
---|
[5342] | 229 | }
|
---|
| 230 |
|
---|
[5435] | 231 | [StorableHook(HookType.AfterDeserialization)]
|
---|
| 232 | private void AfterDeserialization() {
|
---|
| 233 | Initialize();
|
---|
| 234 | }
|
---|
| 235 |
|
---|
[5410] | 236 | public override void Prepare() {
|
---|
[5560] | 237 | if (Problem != null && ParticleCreator != null && ParticleUpdater != null) {
|
---|
[5410] | 238 | base.Prepare();
|
---|
[5342] | 239 | }
|
---|
| 240 | }
|
---|
| 241 |
|
---|
[5410] | 242 | #region Events
|
---|
| 243 | protected override void OnProblemChanged() {
|
---|
| 244 | UpdateAnalyzers();
|
---|
| 245 | ParameterizeAnalyzers();
|
---|
[5560] | 246 | UpdateTopologyParameters();
|
---|
| 247 | InitializeParticleCreator();
|
---|
[5561] | 248 | InitializeSwarmUpdater();
|
---|
[5568] | 249 | ParameterizeSolutionsCreator();
|
---|
[5410] | 250 | base.OnProblemChanged();
|
---|
[5342] | 251 | }
|
---|
| 252 |
|
---|
| 253 | void TopologyInitializerParameter_ValueChanged(object sender, EventArgs e) {
|
---|
[5410] | 254 | this.UpdateTopologyParameters();
|
---|
| 255 | }
|
---|
| 256 | #endregion
|
---|
[5342] | 257 |
|
---|
[5410] | 258 | #region Helpers
|
---|
| 259 | private void Initialize() {
|
---|
| 260 | TopologyInitializerParameter.ValueChanged += new EventHandler(TopologyInitializerParameter_ValueChanged);
|
---|
| 261 | }
|
---|
| 262 |
|
---|
[5560] | 263 | private void InitializeParticleCreator() {
|
---|
| 264 | if (Problem != null) {
|
---|
| 265 | IParticleCreator oldParticleCreator = ParticleCreator;
|
---|
| 266 | ParticleCreatorParameter.ValidValues.Clear();
|
---|
| 267 | foreach (IParticleCreator Creator in Problem.Operators.OfType<IParticleCreator>().OrderBy(x => x.Name)) {
|
---|
| 268 | ParticleCreatorParameter.ValidValues.Add(Creator);
|
---|
| 269 | }
|
---|
| 270 | if (oldParticleCreator != null) {
|
---|
| 271 | IParticleCreator creator = ParticleCreatorParameter.ValidValues.FirstOrDefault(x => x.GetType() == oldParticleCreator.GetType());
|
---|
| 272 | if (creator != null) ParticleCreator = creator;
|
---|
[5568] | 273 | }
|
---|
[5560] | 274 | }
|
---|
[3348] | 275 | }
|
---|
| 276 |
|
---|
[5410] | 277 | private void InitializeAnalyzers() {
|
---|
| 278 | qualityAnalyzer = new BestAverageWorstQualityAnalyzer();
|
---|
[5581] | 279 | qualityAnalyzer.ResultsParameter.ActualName = "Results";
|
---|
[5410] | 280 | ParameterizeAnalyzers();
|
---|
[3348] | 281 | }
|
---|
| 282 |
|
---|
[5410] | 283 | private void ParameterizeAnalyzers() {
|
---|
[5312] | 284 | if (Problem != null) {
|
---|
[5410] | 285 | qualityAnalyzer.MaximizationParameter.ActualName = Problem.MaximizationParameter.Name;
|
---|
| 286 | qualityAnalyzer.QualityParameter.ActualName = Problem.Evaluator.QualityParameter.ActualName;
|
---|
| 287 | qualityAnalyzer.BestKnownQualityParameter.ActualName = Problem.BestKnownQualityParameter.Name;
|
---|
[5312] | 288 | }
|
---|
[3348] | 289 | }
|
---|
| 290 |
|
---|
[5410] | 291 | private void UpdateAnalyzers() {
|
---|
| 292 | Analyzer.Operators.Clear();
|
---|
| 293 | if (Problem != null) {
|
---|
| 294 | foreach (IAnalyzer analyzer in Problem.Operators.OfType<IAnalyzer>())
|
---|
| 295 | Analyzer.Operators.Add(analyzer);
|
---|
| 296 | }
|
---|
| 297 | Analyzer.Operators.Add(qualityAnalyzer);
|
---|
[3348] | 298 | }
|
---|
[3415] | 299 |
|
---|
[5560] | 300 | private void InitInertiaUpdater() {
|
---|
| 301 | foreach (IDiscreteDoubleValueModifier updater in InertiaUpdaterParameter.ValidValues) {
|
---|
[5311] | 302 | updater.EndIndexParameter.ActualName = MaxIterationsParameter.Name;
|
---|
| 303 | updater.StartIndexParameter.Value = new IntValue(0);
|
---|
| 304 | updater.IndexParameter.ActualName = "CurrentIteration";
|
---|
[5645] | 305 | updater.ValueParameter.ActualName = "CurrentInertia";
|
---|
[5311] | 306 | updater.StartValueParameter.Value = new DoubleValue(1);
|
---|
[5645] | 307 | updater.EndValueParameter.Value = new DoubleValue(double.Epsilon);
|
---|
[5311] | 308 | }
|
---|
| 309 | }
|
---|
| 310 |
|
---|
[5560] | 311 | private void UpdateInertiaUpdater() {
|
---|
| 312 | IDiscreteDoubleValueModifier oldInertiaUpdater = InertiaUpdater;
|
---|
| 313 | InertiaUpdaterParameter.ValidValues.Clear();
|
---|
[5311] | 314 | foreach (IDiscreteDoubleValueModifier updater in ApplicationManager.Manager.GetInstances<IDiscreteDoubleValueModifier>().OrderBy(x => x.Name)) {
|
---|
[5560] | 315 | InertiaUpdaterParameter.ValidValues.Add(updater);
|
---|
[5311] | 316 | }
|
---|
[5560] | 317 | if (oldInertiaUpdater != null) {
|
---|
| 318 | IDiscreteDoubleValueModifier updater = InertiaUpdaterParameter.ValidValues.FirstOrDefault(x => x.GetType() == oldInertiaUpdater.GetType());
|
---|
| 319 | if (updater != null) InertiaUpdaterParameter.Value = updater;
|
---|
[5311] | 320 | }
|
---|
| 321 | }
|
---|
| 322 |
|
---|
[5410] | 323 | private void UpdateTopologyInitializer() {
|
---|
| 324 | ITopologyInitializer oldTopologyInitializer = TopologyInitializer;
|
---|
| 325 | TopologyInitializerParameter.ValidValues.Clear();
|
---|
| 326 | foreach (ITopologyInitializer topologyInitializer in ApplicationManager.Manager.GetInstances<ITopologyInitializer>().OrderBy(x => x.Name)) {
|
---|
| 327 | TopologyInitializerParameter.ValidValues.Add(topologyInitializer);
|
---|
[3348] | 328 | }
|
---|
[5410] | 329 | if (oldTopologyInitializer != null && TopologyInitializerParameter.ValidValues.Any(x => x.GetType() == oldTopologyInitializer.GetType()))
|
---|
| 330 | TopologyInitializer = TopologyInitializerParameter.ValidValues.FirstOrDefault(x => x.GetType() == oldTopologyInitializer.GetType());
|
---|
| 331 | UpdateTopologyParameters();
|
---|
[3348] | 332 | }
|
---|
[3415] | 333 |
|
---|
[5410] | 334 | private void UpdateTopologyParameters() {
|
---|
| 335 | ITopologyUpdater oldTopologyUpdater = TopologyUpdater;
|
---|
| 336 | IParticleUpdater oldParticleUpdater = ParticleUpdater;
|
---|
| 337 | ClearTopologyParameters();
|
---|
[5560] | 338 | if (Problem != null) {
|
---|
| 339 | if (TopologyInitializer != null) {
|
---|
| 340 | foreach (ITopologyUpdater topologyUpdater in ApplicationManager.Manager.GetInstances<ITopologyUpdater>())
|
---|
| 341 | TopologyUpdaterParameter.ValidValues.Add(topologyUpdater);
|
---|
| 342 | foreach (IParticleUpdater particleUpdater in Problem.Operators.OfType<ILocalParticleUpdater>().OrderBy(x => x.Name))
|
---|
| 343 | ParticleUpdaterParameter.ValidValues.Add(particleUpdater);
|
---|
| 344 | } else {
|
---|
| 345 | foreach (IParticleUpdater particleUpdater in Problem.Operators.OfType<IGlobalParticleUpdater>().OrderBy(x => x.Name))
|
---|
| 346 | ParticleUpdaterParameter.ValidValues.Add(particleUpdater);
|
---|
| 347 | }
|
---|
| 348 | if (oldTopologyUpdater != null) {
|
---|
| 349 | ITopologyUpdater newTopologyUpdater = TopologyUpdaterParameter.ValidValues.FirstOrDefault(x => x.GetType() == oldParticleUpdater.GetType());
|
---|
| 350 | if (newTopologyUpdater != null) TopologyUpdater = newTopologyUpdater;
|
---|
| 351 | }
|
---|
| 352 | if (oldParticleUpdater != null) {
|
---|
| 353 | IParticleUpdater newParticleUpdater = ParticleUpdaterParameter.ValidValues.FirstOrDefault(x => x.GetType() == oldParticleUpdater.GetType());
|
---|
| 354 | if (newParticleUpdater != null) ParticleUpdater = newParticleUpdater;
|
---|
| 355 | }
|
---|
[3682] | 356 | }
|
---|
| 357 | }
|
---|
| 358 |
|
---|
[5410] | 359 | private void ClearTopologyParameters() {
|
---|
| 360 | TopologyUpdaterParameter.ValidValues.Clear();
|
---|
| 361 | ParticleUpdaterParameter.ValidValues.Clear();
|
---|
| 362 | }
|
---|
[5560] | 363 |
|
---|
| 364 | private void ParameterizeSolutionsCreator() {
|
---|
| 365 | if (Problem != null) {
|
---|
| 366 | solutionsCreator.EvaluatorParameter.ActualName = Problem.EvaluatorParameter.Name;
|
---|
| 367 | solutionsCreator.SolutionCreatorParameter.ActualName = ParticleCreatorParameter.Name;
|
---|
| 368 | }
|
---|
| 369 | }
|
---|
| 370 |
|
---|
| 371 | private void ParameterizeMainLoop() {
|
---|
[5568] | 372 | if (Problem != null) {
|
---|
[5561] | 373 | mainLoop.EvaluatorParameter.ActualName = Problem.EvaluatorParameter.Name;
|
---|
| 374 | }
|
---|
[5560] | 375 | }
|
---|
[5561] | 376 |
|
---|
| 377 | private void InitializeSwarmUpdater() {
|
---|
| 378 | if (Problem != null) {
|
---|
| 379 | ISwarmUpdater updater = Problem.Operators.OfType<ISwarmUpdater>().FirstOrDefault();
|
---|
[5568] | 380 | SwarmUpdaterParameter.ValidValues.Clear();
|
---|
| 381 | SwarmUpdaterParameter.ValidValues.Add(updater);
|
---|
| 382 | SwarmUpdaterParameter.Value = updater;
|
---|
[5561] | 383 | }
|
---|
| 384 | }
|
---|
[3348] | 385 | #endregion
|
---|
[5410] | 386 |
|
---|
[3348] | 387 | }
|
---|
| 388 | }
|
---|