[3348] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
| 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;
|
---|
| 28 | using HeuristicLab.Encodings.RealVectorEncoding;
|
---|
[4068] | 29 | using HeuristicLab.Operators;
|
---|
[3348] | 30 | using HeuristicLab.Optimization;
|
---|
| 31 | using HeuristicLab.Optimization.Operators;
|
---|
| 32 | using HeuristicLab.Parameters;
|
---|
| 33 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
[5209] | 34 | using HeuristicLab.PluginInfrastructure;
|
---|
[3368] | 35 | using HeuristicLab.Random;
|
---|
[3348] | 36 |
|
---|
| 37 | namespace HeuristicLab.Algorithms.ParticleSwarmOptimization {
|
---|
[5033] | 38 |
|
---|
[5209] | 39 | [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] | 40 | [Creatable("Algorithms")]
|
---|
| 41 | [StorableClass]
|
---|
[5033] | 42 | public class ParticleSwarmOptimization : EngineAlgorithm {
|
---|
| 43 |
|
---|
[3348] | 44 | #region Problem Properties
|
---|
| 45 | public override Type ProblemType {
|
---|
| 46 | get { return typeof(ISingleObjectiveProblem); }
|
---|
| 47 | }
|
---|
| 48 | public new ISingleObjectiveProblem Problem {
|
---|
| 49 | get { return (ISingleObjectiveProblem)base.Problem; }
|
---|
| 50 | set { base.Problem = value; }
|
---|
| 51 | }
|
---|
[3682] | 52 | public MultiAnalyzer Analyzer {
|
---|
| 53 | get { return AnalyzerParameter.Value; }
|
---|
| 54 | set { AnalyzerParameter.Value = value; }
|
---|
| 55 | }
|
---|
[5225] | 56 | public ValueModifierSelector OmegaUpdater {
|
---|
| 57 | get { return OmegaUpdaterParameter.Value; }
|
---|
| 58 | set { OmegaUpdaterParameter.Value = value; }
|
---|
| 59 | }
|
---|
| 60 | public WeightedValueModifierSelector VelocityBoundsUpdater {
|
---|
| 61 | get { return VelocityBoundsUpdaterParameter.Value; }
|
---|
| 62 | set { VelocityBoundsUpdaterParameter.Value = value; }
|
---|
| 63 | }
|
---|
[4068] | 64 | #endregion
|
---|
[3348] | 65 |
|
---|
| 66 | #region Parameter Properties
|
---|
[5033] | 67 | public ValueParameter<IntValue> SeedParameter {
|
---|
[3348] | 68 | get { return (ValueParameter<IntValue>)Parameters["Seed"]; }
|
---|
| 69 | }
|
---|
[5033] | 70 | public ValueParameter<BoolValue> SetSeedRandomlyParameter {
|
---|
[3348] | 71 | get { return (ValueParameter<BoolValue>)Parameters["SetSeedRandomly"]; }
|
---|
| 72 | }
|
---|
[5033] | 73 | public ValueParameter<IntValue> SwarmSizeParameter {
|
---|
[3348] | 74 | get { return (ValueParameter<IntValue>)Parameters["SwarmSize"]; }
|
---|
| 75 | }
|
---|
[5033] | 76 | public ValueParameter<IntValue> MaxIterationsParameter {
|
---|
[3348] | 77 | get { return (ValueParameter<IntValue>)Parameters["MaxIterations"]; }
|
---|
| 78 | }
|
---|
[5033] | 79 | public ValueParameter<DoubleValue> OmegaParameter {
|
---|
| 80 | get { return (ValueParameter<DoubleValue>)Parameters["Omega"]; }
|
---|
[3348] | 81 | }
|
---|
[5033] | 82 | public ValueParameter<DoubleValue> Phi_PParameter {
|
---|
| 83 | get { return (ValueParameter<DoubleValue>)Parameters["Phi_P"]; }
|
---|
| 84 | }
|
---|
| 85 | public ValueParameter<DoubleValue> Phi_GParameter {
|
---|
| 86 | get { return (ValueParameter<DoubleValue>)Parameters["Phi_G"]; }
|
---|
| 87 | }
|
---|
| 88 | public ValueParameter<MultiAnalyzer> AnalyzerParameter {
|
---|
[3682] | 89 | get { return (ValueParameter<MultiAnalyzer>)Parameters["Analyzer"]; }
|
---|
| 90 | }
|
---|
[5033] | 91 | public ValueLookupParameter<DoubleMatrix> VelocityBoundsParameter {
|
---|
| 92 | get { return (ValueLookupParameter<DoubleMatrix>)Parameters["VelocityBounds"]; }
|
---|
| 93 | }
|
---|
[5209] | 94 | public ConstrainedValueParameter<IParticleUpdater> ParticleUpdaterParameter {
|
---|
| 95 | get { return (ConstrainedValueParameter<IParticleUpdater>)Parameters["ParticleUpdater"]; }
|
---|
| 96 | }
|
---|
| 97 | public ConstrainedValueParameter<ITopologyInitializer> TopologyInitializerParameter {
|
---|
| 98 | get { return (ConstrainedValueParameter<ITopologyInitializer>)Parameters["TopologyInitializer"]; }
|
---|
| 99 | }
|
---|
| 100 | public ConstrainedValueParameter<ITopologyUpdater> TopologyUpdaterParameter {
|
---|
| 101 | get { return (ConstrainedValueParameter<ITopologyUpdater>)Parameters["TopologyUpdater"]; }
|
---|
| 102 | }
|
---|
[5225] | 103 | public ValueParameter<WeightedValueModifierSelector> VelocityBoundsUpdaterParameter {
|
---|
| 104 | get { return (ValueParameter<WeightedValueModifierSelector>)Parameters["VelocityBoundsUpdater"]; }
|
---|
| 105 | }
|
---|
| 106 | public ValueParameter<ValueModifierSelector> OmegaUpdaterParameter {
|
---|
| 107 | get { return (ValueParameter<ValueModifierSelector>)Parameters["OmegaUpdater"]; }
|
---|
| 108 | }
|
---|
[3348] | 109 | #endregion
|
---|
| 110 |
|
---|
| 111 | #region Properties
|
---|
[3719] | 112 | [Storable]
|
---|
[3682] | 113 | private BestAverageWorstQualityAnalyzer qualityAnalyzer;
|
---|
[5225] | 114 |
|
---|
| 115 | //[Storable]
|
---|
| 116 | //private IDiscreteDoubleValueModifier omegaModifier;
|
---|
[3348] | 117 | #endregion
|
---|
| 118 |
|
---|
[5033] | 119 | [StorableConstructor]
|
---|
| 120 | protected ParticleSwarmOptimization(bool deserializing) : base(deserializing) { }
|
---|
| 121 | protected ParticleSwarmOptimization(ParticleSwarmOptimization original, Cloner cloner)
|
---|
| 122 | : base(original, cloner) {
|
---|
| 123 | qualityAnalyzer = cloner.Clone(original.qualityAnalyzer);
|
---|
[5225] | 124 | //omegaModifier = cloner.Clone(original.omegaModifier);
|
---|
[5033] | 125 | }
|
---|
| 126 |
|
---|
[3348] | 127 | public ParticleSwarmOptimization()
|
---|
| 128 | : base() {
|
---|
| 129 | Parameters.Add(new ValueParameter<IntValue>("Seed", "The random seed used to initialize the new pseudo random number generator.", new IntValue(0)));
|
---|
| 130 | Parameters.Add(new ValueParameter<BoolValue>("SetSeedRandomly", "True if the random seed should be set to a random value, otherwise false.", new BoolValue(true)));
|
---|
[3724] | 131 | Parameters.Add(new ValueParameter<IntValue>("SwarmSize", "Size of the particle swarm.", new IntValue(10)));
|
---|
[3348] | 132 | Parameters.Add(new ValueParameter<IntValue>("MaxIterations", "Maximal number of iterations.", new IntValue(1000)));
|
---|
[3682] | 133 | Parameters.Add(new ValueParameter<MultiAnalyzer>("Analyzer", "The operator used to analyze each generation.", new MultiAnalyzer()));
|
---|
[5033] | 134 | Parameters.Add(new ValueParameter<DoubleValue>("Omega", "Weight for particle's velocity vector.", new DoubleValue(-0.2)));
|
---|
| 135 | Parameters.Add(new ValueParameter<DoubleValue>("Phi_P", "Weight for particle's personal best position.", new DoubleValue(-0.01)));
|
---|
| 136 | Parameters.Add(new ValueParameter<DoubleValue>("Phi_G", "Weight for global best position.", new DoubleValue(3.7)));
|
---|
| 137 | Parameters.Add(new ValueLookupParameter<DoubleMatrix>("VelocityBounds", "Maximum Velocity in every dimension", new DoubleMatrix(new double[,] { { -1, 1 } })));
|
---|
[5209] | 138 | Parameters.Add(new ConstrainedValueParameter<IParticleUpdater>("ParticleUpdater", "Operator that calculates new position and velocity of a particle",
|
---|
| 139 | new ItemSet<IParticleUpdater>(ApplicationManager.Manager.GetInstances<IParticleUpdater>())));
|
---|
| 140 | Parameters.Add(new ConstrainedValueParameter<ITopologyInitializer>("TopologyInitializer", "Creates neighborhood description vectors",
|
---|
| 141 | new ItemSet<ITopologyInitializer>(ApplicationManager.Manager.GetInstances<ITopologyInitializer>())));
|
---|
| 142 | Parameters.Add(new ConstrainedValueParameter<ITopologyUpdater>("TopologyUpdater", "Updates the neighborhood description vectors",
|
---|
| 143 | new ItemSet<ITopologyUpdater>(ApplicationManager.Manager.GetInstances<ITopologyUpdater>())));
|
---|
[5225] | 144 | //Parameters.Add(new ValueParameter<MultiParameterUpdater>("ParameterUpdater", "Updates the algorithm parameters according to some strategy",
|
---|
| 145 | // new MultiParameterUpdater()));
|
---|
| 146 | Parameters.Add(new ValueParameter<ValueModifierSelector>("OmegaUpdater", "Updates the omega parameter", new ValueModifierSelector()));
|
---|
| 147 | Parameters.Add(new ValueParameter<WeightedValueModifierSelector>("VelocityBoundsUpdater", "Adjusts the velocity bounds", new WeightedValueModifierSelector()));
|
---|
[5209] | 148 | ParticleUpdaterParameter.ActualValue = ParticleUpdaterParameter.ValidValues.SingleOrDefault(v => v.GetType() == typeof(TotallyConnectedParticleUpdater));
|
---|
| 149 | TopologyInitializerParameter.ActualValue = TopologyInitializerParameter.ValidValues.SingleOrDefault(v => v.GetType() == typeof(EmptyTopologyInitializer));
|
---|
[5033] | 150 |
|
---|
[3348] | 151 | RandomCreator randomCreator = new RandomCreator();
|
---|
[5033] | 152 | VariableCreator variableCreator = new VariableCreator();
|
---|
[3348] | 153 | SolutionsCreator solutionsCreator = new SolutionsCreator();
|
---|
[5033] | 154 | CombinedOperator particleCreator = new CombinedOperator();
|
---|
| 155 | Placeholder evaluatorPlaceholder = new Placeholder();
|
---|
| 156 | Assigner bestPersonalQualityAssigner = new Assigner();
|
---|
| 157 | BestPointInitializer bestPositionInitializer = new BestPointInitializer();
|
---|
[5209] | 158 | Placeholder topologyInitializerPlaceholder = new Placeholder();
|
---|
| 159 | NeighborUpdater neighborUpdater = new NeighborUpdater();
|
---|
[5033] | 160 | Placeholder analyzerPlaceholder = new Placeholder();
|
---|
| 161 | UniformSubScopesProcessor uniformSubScopeProcessor = new UniformSubScopesProcessor();
|
---|
[5209] | 162 | Placeholder particleUpdaterPlaceholder = new Placeholder();
|
---|
| 163 | Placeholder topologyUpdaterPlaceholder = new Placeholder();
|
---|
| 164 | UniformSubScopesProcessor uniformSubscopesProcessor2 = new UniformSubScopesProcessor();
|
---|
| 165 | NeighborUpdater neighborUpdater2 = new NeighborUpdater();
|
---|
[5033] | 166 | Placeholder evaluatorPlaceholder2 = new Placeholder();
|
---|
| 167 | SwarmUpdater swarmUpdater = new SwarmUpdater();
|
---|
| 168 | Placeholder analyzerPlaceholder2 = new Placeholder();
|
---|
| 169 | IntCounter currentIterationCounter = new IntCounter();
|
---|
| 170 | Comparator currentIterationComparator = new Comparator();
|
---|
| 171 | ConditionalBranch conditionalBranch = new ConditionalBranch();
|
---|
[5225] | 172 | Placeholder velocityBoundsUpdaterPlaceholder = new Placeholder();
|
---|
| 173 | Placeholder omegaUpdaterPlaceholder = new Placeholder();
|
---|
[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)));
|
---|
| 182 | variableCreator.Successor = solutionsCreator;
|
---|
[4068] | 183 |
|
---|
[5033] | 184 | solutionsCreator.NumberOfSolutionsParameter.ActualName = "SwarmSize";
|
---|
| 185 | solutionsCreator.EvaluatorParameter.Value = evaluatorPlaceholder;
|
---|
| 186 | solutionsCreator.SolutionCreatorParameter.Value = particleCreator;
|
---|
| 187 | solutionsCreator.Successor = bestPositionInitializer;
|
---|
[4068] | 188 |
|
---|
[5033] | 189 | InitializeParticleCreator(particleCreator);
|
---|
[3348] | 190 |
|
---|
[5033] | 191 | evaluatorPlaceholder.Name = "(Evaluator)";
|
---|
| 192 | evaluatorPlaceholder.OperatorParameter.ActualName = "Evaluator";
|
---|
| 193 | evaluatorPlaceholder.Successor = bestPersonalQualityAssigner;
|
---|
[3348] | 194 |
|
---|
[5033] | 195 | bestPersonalQualityAssigner.LeftSideParameter.ActualName = "PersonalBestQuality";
|
---|
| 196 | bestPersonalQualityAssigner.RightSideParameter.ActualName = "Quality";
|
---|
[3682] | 197 |
|
---|
[5209] | 198 | bestPositionInitializer.Successor = topologyInitializerPlaceholder;
|
---|
[3682] | 199 |
|
---|
[5209] | 200 | topologyInitializerPlaceholder.Name = "(TopologyInitializer)";
|
---|
| 201 | topologyInitializerPlaceholder.OperatorParameter.ActualName = "TopologyInitializer";
|
---|
| 202 | topologyInitializerPlaceholder.Successor = neighborUpdater;
|
---|
| 203 |
|
---|
| 204 | neighborUpdater.Successor = analyzerPlaceholder;
|
---|
| 205 |
|
---|
[5033] | 206 | analyzerPlaceholder.Name = "(Analyzer)";
|
---|
| 207 | analyzerPlaceholder.OperatorParameter.ActualName = "Analyzer";
|
---|
| 208 | analyzerPlaceholder.Successor = uniformSubScopeProcessor;
|
---|
[3682] | 209 |
|
---|
[5209] | 210 | uniformSubScopeProcessor.Operator = particleUpdaterPlaceholder;
|
---|
| 211 | uniformSubScopeProcessor.Successor = topologyUpdaterPlaceholder;
|
---|
[3682] | 212 |
|
---|
[5209] | 213 | particleUpdaterPlaceholder.Name = "(ParticleUpdater)";
|
---|
| 214 | particleUpdaterPlaceholder.OperatorParameter.ActualName = "ParticleUpdater";
|
---|
| 215 | particleUpdaterPlaceholder.Successor = evaluatorPlaceholder2;
|
---|
[3682] | 216 |
|
---|
[5033] | 217 | evaluatorPlaceholder2.Name = "(Evaluator)";
|
---|
| 218 | evaluatorPlaceholder2.OperatorParameter.ActualName = "Evaluator";
|
---|
[3682] | 219 |
|
---|
[5209] | 220 | topologyUpdaterPlaceholder.Name = "(TopologyUpdater)";
|
---|
| 221 | topologyUpdaterPlaceholder.OperatorParameter.ActualName = "TopologyUpdater";
|
---|
| 222 | topologyUpdaterPlaceholder.Successor = neighborUpdater2;
|
---|
| 223 |
|
---|
| 224 | neighborUpdater2.Successor = uniformSubscopesProcessor2;
|
---|
| 225 |
|
---|
| 226 | uniformSubscopesProcessor2.Operator = swarmUpdater;
|
---|
| 227 | uniformSubscopesProcessor2.Successor = analyzerPlaceholder2;
|
---|
| 228 |
|
---|
[5033] | 229 | analyzerPlaceholder2.Name = "(Analyzer)";
|
---|
| 230 | analyzerPlaceholder2.OperatorParameter.ActualName = "Analyzer";
|
---|
| 231 | analyzerPlaceholder2.Successor = currentIterationCounter;
|
---|
| 232 |
|
---|
| 233 | currentIterationCounter.Name = "CurrentIteration++";
|
---|
| 234 | currentIterationCounter.ValueParameter.ActualName = "CurrentIteration";
|
---|
[5225] | 235 | currentIterationCounter.Successor = omegaUpdaterPlaceholder;
|
---|
[5033] | 236 |
|
---|
[5225] | 237 | omegaUpdaterPlaceholder.Name = "(Omega Updater)";
|
---|
| 238 | omegaUpdaterPlaceholder.OperatorParameter.ActualName = "OmegaUpdater";
|
---|
| 239 | omegaUpdaterPlaceholder.Successor = velocityBoundsUpdaterPlaceholder;
|
---|
| 240 |
|
---|
| 241 | velocityBoundsUpdaterPlaceholder.Name = "(Velocity Bounds Updater)";
|
---|
| 242 | velocityBoundsUpdaterPlaceholder.OperatorParameter.ActualName = "VelocityBoundsUpdater";
|
---|
| 243 | velocityBoundsUpdaterPlaceholder.Successor = currentIterationComparator;
|
---|
| 244 |
|
---|
[5033] | 245 | currentIterationComparator.LeftSideParameter.ActualName = "CurrentIteration";
|
---|
| 246 | currentIterationComparator.Comparison = new Comparison(ComparisonType.Less);
|
---|
| 247 | currentIterationComparator.RightSideParameter.ActualName = "MaxIterations";
|
---|
| 248 | currentIterationComparator.ResultParameter.ActualName = "ContinueIteration";
|
---|
| 249 | currentIterationComparator.Successor = conditionalBranch;
|
---|
| 250 |
|
---|
| 251 | conditionalBranch.Name = "ContinueIteration?";
|
---|
| 252 | conditionalBranch.ConditionParameter.ActualName = "ContinueIteration";
|
---|
| 253 | conditionalBranch.TrueBranch = uniformSubScopeProcessor;
|
---|
| 254 |
|
---|
[3719] | 255 | InitializeAnalyzers();
|
---|
[5225] | 256 | InitializeUpdaters();
|
---|
[3719] | 257 | UpdateAnalyzers();
|
---|
[3348] | 258 | }
|
---|
| 259 |
|
---|
[5033] | 260 | private static void InitializeParticleCreator(CombinedOperator particleCreator) {
|
---|
| 261 | Placeholder positionCreator = new Placeholder();
|
---|
| 262 | Assigner personalBestPositionAssigner = new Assigner();
|
---|
| 263 | UniformRandomRealVectorCreator velocityCreator = new UniformRandomRealVectorCreator();
|
---|
| 264 |
|
---|
| 265 | particleCreator.Name = "Particle Creator";
|
---|
| 266 | particleCreator.OperatorGraph.InitialOperator = positionCreator;
|
---|
| 267 |
|
---|
| 268 | positionCreator.Name = "(SolutionCreator)";
|
---|
| 269 | positionCreator.OperatorParameter.ActualName = "SolutionCreator";
|
---|
| 270 | positionCreator.Successor = personalBestPositionAssigner;
|
---|
| 271 |
|
---|
| 272 | personalBestPositionAssigner.LeftSideParameter.ActualName = "PersonalBestPoint";
|
---|
| 273 | personalBestPositionAssigner.RightSideParameter.ActualName = "Point";
|
---|
| 274 | personalBestPositionAssigner.Successor = velocityCreator;
|
---|
| 275 |
|
---|
| 276 | velocityCreator.LengthParameter.ActualName = "ProblemSize";
|
---|
| 277 | velocityCreator.BoundsParameter.ActualName = "VelocityBounds";
|
---|
| 278 | velocityCreator.RealVectorParameter.ActualName = "Velocity";
|
---|
[3348] | 279 | }
|
---|
| 280 |
|
---|
| 281 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
[5033] | 282 | return new ParticleSwarmOptimization(this, cloner);
|
---|
[3348] | 283 | }
|
---|
| 284 |
|
---|
| 285 | public override void Prepare() {
|
---|
| 286 | if (Problem != null) base.Prepare();
|
---|
| 287 | }
|
---|
| 288 |
|
---|
| 289 | #region Events
|
---|
| 290 | protected override void OnProblemChanged() {
|
---|
[3682] | 291 | UpdateAnalyzers();
|
---|
[4068] | 292 | ParameterizeAnalyzers();
|
---|
[3682] | 293 | Problem.Evaluator.QualityParameter.ActualNameChanged += new EventHandler(Evaluator_QualityParameter_ActualNameChanged);
|
---|
[3348] | 294 | base.OnProblemChanged();
|
---|
| 295 | }
|
---|
[3415] | 296 |
|
---|
[3348] | 297 | #endregion
|
---|
| 298 |
|
---|
| 299 | #region Helpers
|
---|
[5209] | 300 | private void InitializeParticleUpdaters() {
|
---|
| 301 | }
|
---|
| 302 |
|
---|
[3682] | 303 | private void Evaluator_QualityParameter_ActualNameChanged(object sender, EventArgs e) {
|
---|
| 304 | }
|
---|
[3348] | 305 |
|
---|
[3682] | 306 | private void InitializeAnalyzers() {
|
---|
| 307 | qualityAnalyzer = new BestAverageWorstQualityAnalyzer();
|
---|
| 308 | ParameterizeAnalyzers();
|
---|
| 309 | }
|
---|
| 310 |
|
---|
[5225] | 311 | private void InitializeUpdaters() {
|
---|
| 312 | OmegaUpdater.ValueParameter.ActualName = OmegaParameter.Name;
|
---|
| 313 | foreach (IDiscreteDoubleValueModifier op in ApplicationManager.Manager.GetInstances<IDiscreteDoubleValueModifier>()) {
|
---|
| 314 | OmegaUpdater.ModifierParameter.ValidValues.Add(op);
|
---|
| 315 | op.EndIndexParameter.ActualName = MaxIterationsParameter.Name;
|
---|
| 316 | op.StartIndexParameter.Value = new IntValue(0);
|
---|
| 317 | op.IndexParameter.ActualName = "CurrentIteration";
|
---|
| 318 | op.ValueParameter.ActualName = OmegaUpdater.ValueParameter.ActualName;
|
---|
| 319 | op.StartValueParameter.Value = new DoubleValue(OmegaParameter.Value.Value);
|
---|
| 320 | op.EndValueParameter.Value = new DoubleValue(-2);
|
---|
| 321 | }
|
---|
| 322 | VelocityBoundsUpdater.ValueParameter.ActualName = VelocityBoundsParameter.Name;
|
---|
| 323 | foreach (IDiscreteDoubleValueModifier op in ApplicationManager.Manager.GetInstances<IDiscreteDoubleValueModifier>()) {
|
---|
| 324 | VelocityBoundsUpdater.ModifierParameter.ValidValues.Add(op);
|
---|
| 325 | op.EndIndexParameter.ActualName = MaxIterationsParameter.Name;
|
---|
| 326 | op.StartIndexParameter.Value = new IntValue(0);
|
---|
| 327 | op.IndexParameter.ActualName = "CurrentIteration";
|
---|
| 328 | op.ValueParameter.ActualName = VelocityBoundsUpdater.ScaleParameter.Name;
|
---|
| 329 | op.StartValueParameter.Value = new DoubleValue(VelocityBoundsUpdater.ScaleParameter.Value.Value);
|
---|
| 330 | op.EndValueParameter.Value = new DoubleValue(0);
|
---|
| 331 | }
|
---|
| 332 | }
|
---|
| 333 |
|
---|
[3682] | 334 | private void ParameterizeAnalyzers() {
|
---|
| 335 | if (Problem != null) {
|
---|
| 336 | qualityAnalyzer.MaximizationParameter.ActualName = Problem.MaximizationParameter.Name;
|
---|
| 337 | qualityAnalyzer.QualityParameter.ActualName = Problem.Evaluator.QualityParameter.ActualName;
|
---|
| 338 | qualityAnalyzer.BestKnownQualityParameter.ActualName = Problem.BestKnownQualityParameter.Name;
|
---|
[3348] | 339 | }
|
---|
| 340 | }
|
---|
[3415] | 341 |
|
---|
[3682] | 342 | private void UpdateAnalyzers() {
|
---|
| 343 | Analyzer.Operators.Clear();
|
---|
| 344 | if (Problem != null) {
|
---|
[3816] | 345 | foreach (IAnalyzer analyzer in Problem.Operators.OfType<IAnalyzer>())
|
---|
[3682] | 346 | Analyzer.Operators.Add(analyzer);
|
---|
| 347 | }
|
---|
[3799] | 348 | Analyzer.Operators.Add(qualityAnalyzer);
|
---|
[3682] | 349 | }
|
---|
| 350 |
|
---|
[3348] | 351 | #endregion
|
---|
| 352 | }
|
---|
| 353 | }
|
---|