[2] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[11185] | 3 | * Copyright (C) 2002-2014 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[2] | 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 |
|
---|
[2865] | 22 | using System;
|
---|
| 23 | using System.Linq;
|
---|
[4068] | 24 | using HeuristicLab.Analysis;
|
---|
[3376] | 25 | using HeuristicLab.Common;
|
---|
[2] | 26 | using HeuristicLab.Core;
|
---|
| 27 | using HeuristicLab.Data;
|
---|
[5346] | 28 | using HeuristicLab.Operators;
|
---|
[2851] | 29 | using HeuristicLab.Optimization;
|
---|
[3021] | 30 | using HeuristicLab.Optimization.Operators;
|
---|
[2852] | 31 | using HeuristicLab.Parameters;
|
---|
| 32 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
[2882] | 33 | using HeuristicLab.PluginInfrastructure;
|
---|
[3368] | 34 | using HeuristicLab.Random;
|
---|
[2] | 35 |
|
---|
[3196] | 36 | namespace HeuristicLab.Algorithms.GeneticAlgorithm {
|
---|
[1153] | 37 | /// <summary>
|
---|
[3198] | 38 | /// A genetic algorithm.
|
---|
[1153] | 39 | /// </summary>
|
---|
[3198] | 40 | [Item("Genetic Algorithm", "A genetic algorithm.")]
|
---|
[2851] | 41 | [Creatable("Algorithms")]
|
---|
[3017] | 42 | [StorableClass]
|
---|
[5809] | 43 | public sealed class GeneticAlgorithm : HeuristicOptimizationEngineAlgorithm, IStorableContent {
|
---|
[4437] | 44 | public string Filename { get; set; }
|
---|
| 45 |
|
---|
[2986] | 46 | #region Problem Properties
|
---|
| 47 | public override Type ProblemType {
|
---|
[5809] | 48 | get { return typeof(ISingleObjectiveHeuristicOptimizationProblem); }
|
---|
[2986] | 49 | }
|
---|
[5809] | 50 | public new ISingleObjectiveHeuristicOptimizationProblem Problem {
|
---|
| 51 | get { return (ISingleObjectiveHeuristicOptimizationProblem)base.Problem; }
|
---|
[2986] | 52 | set { base.Problem = value; }
|
---|
| 53 | }
|
---|
| 54 | #endregion
|
---|
[2852] | 55 |
|
---|
[2986] | 56 | #region Parameter Properties
|
---|
[3048] | 57 | private ValueParameter<IntValue> SeedParameter {
|
---|
| 58 | get { return (ValueParameter<IntValue>)Parameters["Seed"]; }
|
---|
[2986] | 59 | }
|
---|
[3048] | 60 | private ValueParameter<BoolValue> SetSeedRandomlyParameter {
|
---|
| 61 | get { return (ValueParameter<BoolValue>)Parameters["SetSeedRandomly"]; }
|
---|
[2986] | 62 | }
|
---|
[3048] | 63 | private ValueParameter<IntValue> PopulationSizeParameter {
|
---|
| 64 | get { return (ValueParameter<IntValue>)Parameters["PopulationSize"]; }
|
---|
[2986] | 65 | }
|
---|
[8121] | 66 | public IConstrainedValueParameter<ISelector> SelectorParameter {
|
---|
| 67 | get { return (IConstrainedValueParameter<ISelector>)Parameters["Selector"]; }
|
---|
[2986] | 68 | }
|
---|
[8121] | 69 | public IConstrainedValueParameter<ICrossover> CrossoverParameter {
|
---|
| 70 | get { return (IConstrainedValueParameter<ICrossover>)Parameters["Crossover"]; }
|
---|
[2986] | 71 | }
|
---|
[3095] | 72 | private ValueParameter<PercentValue> MutationProbabilityParameter {
|
---|
| 73 | get { return (ValueParameter<PercentValue>)Parameters["MutationProbability"]; }
|
---|
[2986] | 74 | }
|
---|
[8121] | 75 | public IConstrainedValueParameter<IManipulator> MutatorParameter {
|
---|
| 76 | get { return (IConstrainedValueParameter<IManipulator>)Parameters["Mutator"]; }
|
---|
[2986] | 77 | }
|
---|
[3048] | 78 | private ValueParameter<IntValue> ElitesParameter {
|
---|
| 79 | get { return (ValueParameter<IntValue>)Parameters["Elites"]; }
|
---|
[2986] | 80 | }
|
---|
[9553] | 81 | private IFixedValueParameter<BoolValue> ReevaluateElitesParameter {
|
---|
| 82 | get { return (IFixedValueParameter<BoolValue>)Parameters["ReevaluateElites"]; }
|
---|
| 83 | }
|
---|
[3658] | 84 | private ValueParameter<MultiAnalyzer> AnalyzerParameter {
|
---|
| 85 | get { return (ValueParameter<MultiAnalyzer>)Parameters["Analyzer"]; }
|
---|
[3616] | 86 | }
|
---|
[3048] | 87 | private ValueParameter<IntValue> MaximumGenerationsParameter {
|
---|
| 88 | get { return (ValueParameter<IntValue>)Parameters["MaximumGenerations"]; }
|
---|
[2986] | 89 | }
|
---|
| 90 | #endregion
|
---|
[2865] | 91 |
|
---|
[2986] | 92 | #region Properties
|
---|
[3048] | 93 | public IntValue Seed {
|
---|
[2986] | 94 | get { return SeedParameter.Value; }
|
---|
| 95 | set { SeedParameter.Value = value; }
|
---|
| 96 | }
|
---|
[3048] | 97 | public BoolValue SetSeedRandomly {
|
---|
[2986] | 98 | get { return SetSeedRandomlyParameter.Value; }
|
---|
| 99 | set { SetSeedRandomlyParameter.Value = value; }
|
---|
| 100 | }
|
---|
[3048] | 101 | public IntValue PopulationSize {
|
---|
[2986] | 102 | get { return PopulationSizeParameter.Value; }
|
---|
| 103 | set { PopulationSizeParameter.Value = value; }
|
---|
| 104 | }
|
---|
| 105 | public ISelector Selector {
|
---|
| 106 | get { return SelectorParameter.Value; }
|
---|
| 107 | set { SelectorParameter.Value = value; }
|
---|
| 108 | }
|
---|
| 109 | public ICrossover Crossover {
|
---|
| 110 | get { return CrossoverParameter.Value; }
|
---|
| 111 | set { CrossoverParameter.Value = value; }
|
---|
| 112 | }
|
---|
[3095] | 113 | public PercentValue MutationProbability {
|
---|
[2986] | 114 | get { return MutationProbabilityParameter.Value; }
|
---|
| 115 | set { MutationProbabilityParameter.Value = value; }
|
---|
| 116 | }
|
---|
| 117 | public IManipulator Mutator {
|
---|
| 118 | get { return MutatorParameter.Value; }
|
---|
| 119 | set { MutatorParameter.Value = value; }
|
---|
| 120 | }
|
---|
[3048] | 121 | public IntValue Elites {
|
---|
[2986] | 122 | get { return ElitesParameter.Value; }
|
---|
| 123 | set { ElitesParameter.Value = value; }
|
---|
| 124 | }
|
---|
[9553] | 125 | public bool ReevaluteElites {
|
---|
| 126 | get { return ReevaluateElitesParameter.Value.Value; }
|
---|
| 127 | set { ReevaluateElitesParameter.Value.Value = value; }
|
---|
| 128 | }
|
---|
[3658] | 129 | public MultiAnalyzer Analyzer {
|
---|
[3616] | 130 | get { return AnalyzerParameter.Value; }
|
---|
| 131 | set { AnalyzerParameter.Value = value; }
|
---|
| 132 | }
|
---|
[3048] | 133 | public IntValue MaximumGenerations {
|
---|
[2986] | 134 | get { return MaximumGenerationsParameter.Value; }
|
---|
| 135 | set { MaximumGenerationsParameter.Value = value; }
|
---|
| 136 | }
|
---|
| 137 | private RandomCreator RandomCreator {
|
---|
| 138 | get { return (RandomCreator)OperatorGraph.InitialOperator; }
|
---|
| 139 | }
|
---|
[3023] | 140 | private SolutionsCreator SolutionsCreator {
|
---|
| 141 | get { return (SolutionsCreator)RandomCreator.Successor; }
|
---|
[2986] | 142 | }
|
---|
[3198] | 143 | private GeneticAlgorithmMainLoop GeneticAlgorithmMainLoop {
|
---|
[5366] | 144 | get { return FindMainLoop(SolutionsCreator.Successor); }
|
---|
[2986] | 145 | }
|
---|
[3680] | 146 | [Storable]
|
---|
[3662] | 147 | private BestAverageWorstQualityAnalyzer qualityAnalyzer;
|
---|
[2986] | 148 | #endregion
|
---|
[2852] | 149 |
|
---|
[3198] | 150 | public GeneticAlgorithm()
|
---|
[2986] | 151 | : base() {
|
---|
[3048] | 152 | Parameters.Add(new ValueParameter<IntValue>("Seed", "The random seed used to initialize the new pseudo random number generator.", new IntValue(0)));
|
---|
| 153 | Parameters.Add(new ValueParameter<BoolValue>("SetSeedRandomly", "True if the random seed should be set to a random value, otherwise false.", new BoolValue(true)));
|
---|
| 154 | Parameters.Add(new ValueParameter<IntValue>("PopulationSize", "The size of the population of solutions.", new IntValue(100)));
|
---|
[2986] | 155 | Parameters.Add(new ConstrainedValueParameter<ISelector>("Selector", "The operator used to select solutions for reproduction."));
|
---|
| 156 | Parameters.Add(new ConstrainedValueParameter<ICrossover>("Crossover", "The operator used to cross solutions."));
|
---|
[3095] | 157 | Parameters.Add(new ValueParameter<PercentValue>("MutationProbability", "The probability that the mutation operator is applied on a solution.", new PercentValue(0.05)));
|
---|
[2986] | 158 | Parameters.Add(new OptionalConstrainedValueParameter<IManipulator>("Mutator", "The operator used to mutate solutions."));
|
---|
[3048] | 159 | Parameters.Add(new ValueParameter<IntValue>("Elites", "The numer of elite solutions which are kept in each generation.", new IntValue(1)));
|
---|
[9553] | 160 | Parameters.Add(new FixedValueParameter<BoolValue>("ReevaluateElites", "Flag to determine if elite individuals should be reevaluated (i.e., if stochastic fitness functions are used.)", new BoolValue(false)) { Hidden = true });
|
---|
[3658] | 161 | Parameters.Add(new ValueParameter<MultiAnalyzer>("Analyzer", "The operator used to analyze each generation.", new MultiAnalyzer()));
|
---|
[3048] | 162 | Parameters.Add(new ValueParameter<IntValue>("MaximumGenerations", "The maximum number of generations which should be processed.", new IntValue(1000)));
|
---|
[2] | 163 |
|
---|
[2986] | 164 | RandomCreator randomCreator = new RandomCreator();
|
---|
[3023] | 165 | SolutionsCreator solutionsCreator = new SolutionsCreator();
|
---|
[5352] | 166 | SubScopesCounter subScopesCounter = new SubScopesCounter();
|
---|
[5356] | 167 | ResultsCollector resultsCollector = new ResultsCollector();
|
---|
| 168 | GeneticAlgorithmMainLoop mainLoop = new GeneticAlgorithmMainLoop();
|
---|
[2986] | 169 | OperatorGraph.InitialOperator = randomCreator;
|
---|
[2882] | 170 |
|
---|
[2986] | 171 | randomCreator.RandomParameter.ActualName = "Random";
|
---|
| 172 | randomCreator.SeedParameter.ActualName = SeedParameter.Name;
|
---|
| 173 | randomCreator.SeedParameter.Value = null;
|
---|
| 174 | randomCreator.SetSeedRandomlyParameter.ActualName = SetSeedRandomlyParameter.Name;
|
---|
| 175 | randomCreator.SetSeedRandomlyParameter.Value = null;
|
---|
[3023] | 176 | randomCreator.Successor = solutionsCreator;
|
---|
[2] | 177 |
|
---|
[3023] | 178 | solutionsCreator.NumberOfSolutionsParameter.ActualName = PopulationSizeParameter.Name;
|
---|
[5352] | 179 | solutionsCreator.Successor = subScopesCounter;
|
---|
[2] | 180 |
|
---|
[5352] | 181 | subScopesCounter.Name = "Initialize EvaluatedSolutions";
|
---|
| 182 | subScopesCounter.ValueParameter.ActualName = "EvaluatedSolutions";
|
---|
[5356] | 183 | subScopesCounter.Successor = resultsCollector;
|
---|
[5346] | 184 |
|
---|
[5356] | 185 | resultsCollector.CollectedValues.Add(new LookupParameter<IntValue>("Evaluated Solutions", null, "EvaluatedSolutions"));
|
---|
| 186 | resultsCollector.ResultsParameter.ActualName = "Results";
|
---|
| 187 | resultsCollector.Successor = mainLoop;
|
---|
[2] | 188 |
|
---|
[5356] | 189 | mainLoop.SelectorParameter.ActualName = SelectorParameter.Name;
|
---|
| 190 | mainLoop.CrossoverParameter.ActualName = CrossoverParameter.Name;
|
---|
| 191 | mainLoop.ElitesParameter.ActualName = ElitesParameter.Name;
|
---|
[9554] | 192 | mainLoop.ReevaluateElitesParameter.ActualName = ReevaluateElitesParameter.Name;
|
---|
[5356] | 193 | mainLoop.MaximumGenerationsParameter.ActualName = MaximumGenerationsParameter.Name;
|
---|
| 194 | mainLoop.MutatorParameter.ActualName = MutatorParameter.Name;
|
---|
| 195 | mainLoop.MutationProbabilityParameter.ActualName = MutationProbabilityParameter.Name;
|
---|
| 196 | mainLoop.RandomParameter.ActualName = RandomCreator.RandomParameter.ActualName;
|
---|
| 197 | mainLoop.AnalyzerParameter.ActualName = AnalyzerParameter.Name;
|
---|
| 198 | mainLoop.EvaluatedSolutionsParameter.ActualName = "EvaluatedSolutions";
|
---|
| 199 | mainLoop.PopulationSizeParameter.ActualName = PopulationSizeParameter.Name;
|
---|
| 200 | mainLoop.ResultsParameter.ActualName = "Results";
|
---|
| 201 |
|
---|
[3680] | 202 | foreach (ISelector selector in ApplicationManager.Manager.GetInstances<ISelector>().Where(x => !(x is IMultiObjectiveSelector)).OrderBy(x => x.Name))
|
---|
| 203 | SelectorParameter.ValidValues.Add(selector);
|
---|
| 204 | ISelector proportionalSelector = SelectorParameter.ValidValues.FirstOrDefault(x => x.GetType().Name.Equals("ProportionalSelector"));
|
---|
| 205 | if (proportionalSelector != null) SelectorParameter.Value = proportionalSelector;
|
---|
| 206 | ParameterizeSelectors();
|
---|
| 207 |
|
---|
| 208 | qualityAnalyzer = new BestAverageWorstQualityAnalyzer();
|
---|
| 209 | ParameterizeAnalyzers();
|
---|
| 210 | UpdateAnalyzers();
|
---|
| 211 |
|
---|
[3280] | 212 | Initialize();
|
---|
[2986] | 213 | }
|
---|
| 214 | [StorableConstructor]
|
---|
[3280] | 215 | private GeneticAlgorithm(bool deserializing) : base(deserializing) { }
|
---|
[4722] | 216 | [StorableHook(HookType.AfterDeserialization)]
|
---|
| 217 | private void AfterDeserialization() {
|
---|
[9592] | 218 | // BackwardsCompatibility3.3
|
---|
[9591] | 219 | #region Backwards compatible code, remove with 3.4
|
---|
[9553] | 220 | if (!Parameters.ContainsKey("ReevaluateElites")) {
|
---|
| 221 | Parameters.Add(new FixedValueParameter<BoolValue>("ReevaluateElites", "Flag to determine if elite individuals should be reevaluated (i.e., if stochastic fitness functions are used.)", (BoolValue)new BoolValue(false).AsReadOnly()) { Hidden = true });
|
---|
| 222 | }
|
---|
[9591] | 223 | #endregion
|
---|
| 224 |
|
---|
[4722] | 225 | Initialize();
|
---|
| 226 | }
|
---|
[2] | 227 |
|
---|
[9591] | 228 |
|
---|
| 229 |
|
---|
[4722] | 230 | private GeneticAlgorithm(GeneticAlgorithm original, Cloner cloner)
|
---|
| 231 | : base(original, cloner) {
|
---|
| 232 | qualityAnalyzer = cloner.Clone(original.qualityAnalyzer);
|
---|
| 233 | Initialize();
|
---|
| 234 | }
|
---|
[2986] | 235 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
[4722] | 236 | return new GeneticAlgorithm(this, cloner);
|
---|
[2986] | 237 | }
|
---|
[2882] | 238 |
|
---|
[3275] | 239 | public override void Prepare() {
|
---|
| 240 | if (Problem != null) base.Prepare();
|
---|
[3188] | 241 | }
|
---|
| 242 |
|
---|
[2986] | 243 | #region Events
|
---|
| 244 | protected override void OnProblemChanged() {
|
---|
| 245 | ParameterizeStochasticOperator(Problem.SolutionCreator);
|
---|
| 246 | ParameterizeStochasticOperator(Problem.Evaluator);
|
---|
[7999] | 247 | foreach (IOperator op in Problem.Operators.OfType<IOperator>()) ParameterizeStochasticOperator(op);
|
---|
[3023] | 248 | ParameterizeSolutionsCreator();
|
---|
[3198] | 249 | ParameterizeGeneticAlgorithmMainLoop();
|
---|
[2986] | 250 | ParameterizeSelectors();
|
---|
[3616] | 251 | ParameterizeAnalyzers();
|
---|
[3750] | 252 | ParameterizeIterationBasedOperators();
|
---|
[2986] | 253 | UpdateCrossovers();
|
---|
| 254 | UpdateMutators();
|
---|
[3616] | 255 | UpdateAnalyzers();
|
---|
[2986] | 256 | Problem.Evaluator.QualityParameter.ActualNameChanged += new EventHandler(Evaluator_QualityParameter_ActualNameChanged);
|
---|
| 257 | base.OnProblemChanged();
|
---|
| 258 | }
|
---|
[3139] | 259 |
|
---|
[2986] | 260 | protected override void Problem_SolutionCreatorChanged(object sender, EventArgs e) {
|
---|
| 261 | ParameterizeStochasticOperator(Problem.SolutionCreator);
|
---|
[3023] | 262 | ParameterizeSolutionsCreator();
|
---|
[2986] | 263 | base.Problem_SolutionCreatorChanged(sender, e);
|
---|
| 264 | }
|
---|
| 265 | protected override void Problem_EvaluatorChanged(object sender, EventArgs e) {
|
---|
| 266 | ParameterizeStochasticOperator(Problem.Evaluator);
|
---|
[3023] | 267 | ParameterizeSolutionsCreator();
|
---|
[3198] | 268 | ParameterizeGeneticAlgorithmMainLoop();
|
---|
[2986] | 269 | ParameterizeSelectors();
|
---|
[3616] | 270 | ParameterizeAnalyzers();
|
---|
[2986] | 271 | Problem.Evaluator.QualityParameter.ActualNameChanged += new EventHandler(Evaluator_QualityParameter_ActualNameChanged);
|
---|
| 272 | base.Problem_EvaluatorChanged(sender, e);
|
---|
| 273 | }
|
---|
| 274 | protected override void Problem_OperatorsChanged(object sender, EventArgs e) {
|
---|
[8351] | 275 | foreach (IOperator op in Problem.Operators.OfType<IOperator>()) ParameterizeStochasticOperator(op);
|
---|
[3750] | 276 | ParameterizeIterationBasedOperators();
|
---|
[2986] | 277 | UpdateCrossovers();
|
---|
| 278 | UpdateMutators();
|
---|
[3616] | 279 | UpdateAnalyzers();
|
---|
[2986] | 280 | base.Problem_OperatorsChanged(sender, e);
|
---|
| 281 | }
|
---|
| 282 | private void ElitesParameter_ValueChanged(object sender, EventArgs e) {
|
---|
| 283 | Elites.ValueChanged += new EventHandler(Elites_ValueChanged);
|
---|
| 284 | ParameterizeSelectors();
|
---|
| 285 | }
|
---|
| 286 | private void Elites_ValueChanged(object sender, EventArgs e) {
|
---|
| 287 | ParameterizeSelectors();
|
---|
| 288 | }
|
---|
[5206] | 289 |
|
---|
[2986] | 290 | private void PopulationSizeParameter_ValueChanged(object sender, EventArgs e) {
|
---|
| 291 | PopulationSize.ValueChanged += new EventHandler(PopulationSize_ValueChanged);
|
---|
| 292 | ParameterizeSelectors();
|
---|
| 293 | }
|
---|
| 294 | private void PopulationSize_ValueChanged(object sender, EventArgs e) {
|
---|
| 295 | ParameterizeSelectors();
|
---|
| 296 | }
|
---|
| 297 | private void Evaluator_QualityParameter_ActualNameChanged(object sender, EventArgs e) {
|
---|
[3198] | 298 | ParameterizeGeneticAlgorithmMainLoop();
|
---|
[2986] | 299 | ParameterizeSelectors();
|
---|
[3616] | 300 | ParameterizeAnalyzers();
|
---|
[2986] | 301 | }
|
---|
| 302 | #endregion
|
---|
[2852] | 303 |
|
---|
[2986] | 304 | #region Helpers
|
---|
[3280] | 305 | private void Initialize() {
|
---|
[2986] | 306 | PopulationSizeParameter.ValueChanged += new EventHandler(PopulationSizeParameter_ValueChanged);
|
---|
| 307 | PopulationSize.ValueChanged += new EventHandler(PopulationSize_ValueChanged);
|
---|
| 308 | ElitesParameter.ValueChanged += new EventHandler(ElitesParameter_ValueChanged);
|
---|
| 309 | Elites.ValueChanged += new EventHandler(Elites_ValueChanged);
|
---|
[3139] | 310 | if (Problem != null) {
|
---|
[2986] | 311 | Problem.Evaluator.QualityParameter.ActualNameChanged += new EventHandler(Evaluator_QualityParameter_ActualNameChanged);
|
---|
[3139] | 312 | }
|
---|
[2986] | 313 | }
|
---|
[2852] | 314 |
|
---|
[3023] | 315 | private void ParameterizeSolutionsCreator() {
|
---|
| 316 | SolutionsCreator.EvaluatorParameter.ActualName = Problem.EvaluatorParameter.Name;
|
---|
| 317 | SolutionsCreator.SolutionCreatorParameter.ActualName = Problem.SolutionCreatorParameter.Name;
|
---|
[2986] | 318 | }
|
---|
[3198] | 319 | private void ParameterizeGeneticAlgorithmMainLoop() {
|
---|
| 320 | GeneticAlgorithmMainLoop.EvaluatorParameter.ActualName = Problem.EvaluatorParameter.Name;
|
---|
| 321 | GeneticAlgorithmMainLoop.MaximizationParameter.ActualName = Problem.MaximizationParameter.Name;
|
---|
| 322 | GeneticAlgorithmMainLoop.QualityParameter.ActualName = Problem.Evaluator.QualityParameter.ActualName;
|
---|
[2986] | 323 | }
|
---|
| 324 | private void ParameterizeStochasticOperator(IOperator op) {
|
---|
[6051] | 325 | IStochasticOperator stochasticOp = op as IStochasticOperator;
|
---|
| 326 | if (stochasticOp != null) {
|
---|
| 327 | stochasticOp.RandomParameter.ActualName = RandomCreator.RandomParameter.ActualName;
|
---|
| 328 | stochasticOp.RandomParameter.Hidden = true;
|
---|
| 329 | }
|
---|
[2986] | 330 | }
|
---|
| 331 | private void ParameterizeSelectors() {
|
---|
[3680] | 332 | foreach (ISelector selector in SelectorParameter.ValidValues) {
|
---|
[3048] | 333 | selector.CopySelected = new BoolValue(true);
|
---|
| 334 | selector.NumberOfSelectedSubScopesParameter.Value = new IntValue(2 * (PopulationSizeParameter.Value.Value - ElitesParameter.Value.Value));
|
---|
[6051] | 335 | selector.NumberOfSelectedSubScopesParameter.Hidden = true;
|
---|
[2986] | 336 | ParameterizeStochasticOperator(selector);
|
---|
| 337 | }
|
---|
| 338 | if (Problem != null) {
|
---|
[3680] | 339 | foreach (ISingleObjectiveSelector selector in SelectorParameter.ValidValues.OfType<ISingleObjectiveSelector>()) {
|
---|
[2986] | 340 | selector.MaximizationParameter.ActualName = Problem.MaximizationParameter.Name;
|
---|
[6051] | 341 | selector.MaximizationParameter.Hidden = true;
|
---|
[2986] | 342 | selector.QualityParameter.ActualName = Problem.Evaluator.QualityParameter.ActualName;
|
---|
[6051] | 343 | selector.QualityParameter.Hidden = true;
|
---|
[2986] | 344 | }
|
---|
| 345 | }
|
---|
| 346 | }
|
---|
[3616] | 347 | private void ParameterizeAnalyzers() {
|
---|
| 348 | qualityAnalyzer.ResultsParameter.ActualName = "Results";
|
---|
[6051] | 349 | qualityAnalyzer.ResultsParameter.Hidden = true;
|
---|
[3616] | 350 | if (Problem != null) {
|
---|
| 351 | qualityAnalyzer.MaximizationParameter.ActualName = Problem.MaximizationParameter.Name;
|
---|
[6051] | 352 | qualityAnalyzer.MaximizationParameter.Hidden = true;
|
---|
[3616] | 353 | qualityAnalyzer.QualityParameter.ActualName = Problem.Evaluator.QualityParameter.ActualName;
|
---|
[3662] | 354 | qualityAnalyzer.QualityParameter.Depth = 1;
|
---|
[6051] | 355 | qualityAnalyzer.QualityParameter.Hidden = true;
|
---|
[3616] | 356 | qualityAnalyzer.BestKnownQualityParameter.ActualName = Problem.BestKnownQualityParameter.Name;
|
---|
[6051] | 357 | qualityAnalyzer.BestKnownQualityParameter.Hidden = true;
|
---|
[3616] | 358 | }
|
---|
| 359 | }
|
---|
[3750] | 360 | private void ParameterizeIterationBasedOperators() {
|
---|
| 361 | if (Problem != null) {
|
---|
| 362 | foreach (IIterationBasedOperator op in Problem.Operators.OfType<IIterationBasedOperator>()) {
|
---|
| 363 | op.IterationsParameter.ActualName = "Generations";
|
---|
[6051] | 364 | op.IterationsParameter.Hidden = true;
|
---|
[3750] | 365 | op.MaximumIterationsParameter.ActualName = "MaximumGenerations";
|
---|
[6051] | 366 | op.MaximumIterationsParameter.Hidden = true;
|
---|
[3750] | 367 | }
|
---|
| 368 | }
|
---|
| 369 | }
|
---|
[2986] | 370 | private void UpdateCrossovers() {
|
---|
[3303] | 371 | ICrossover oldCrossover = CrossoverParameter.Value;
|
---|
| 372 | CrossoverParameter.ValidValues.Clear();
|
---|
[7493] | 373 | ICrossover defaultCrossover = Problem.Operators.OfType<ICrossover>().FirstOrDefault();
|
---|
| 374 |
|
---|
[3303] | 375 | foreach (ICrossover crossover in Problem.Operators.OfType<ICrossover>().OrderBy(x => x.Name))
|
---|
| 376 | CrossoverParameter.ValidValues.Add(crossover);
|
---|
[7493] | 377 |
|
---|
[3303] | 378 | if (oldCrossover != null) {
|
---|
| 379 | ICrossover crossover = CrossoverParameter.ValidValues.FirstOrDefault(x => x.GetType() == oldCrossover.GetType());
|
---|
| 380 | if (crossover != null) CrossoverParameter.Value = crossover;
|
---|
[7509] | 381 | else oldCrossover = null;
|
---|
| 382 | }
|
---|
| 383 | if (oldCrossover == null && defaultCrossover != null)
|
---|
[7493] | 384 | CrossoverParameter.Value = defaultCrossover;
|
---|
[2986] | 385 | }
|
---|
| 386 | private void UpdateMutators() {
|
---|
[3303] | 387 | IManipulator oldMutator = MutatorParameter.Value;
|
---|
| 388 | MutatorParameter.ValidValues.Clear();
|
---|
| 389 | foreach (IManipulator mutator in Problem.Operators.OfType<IManipulator>().OrderBy(x => x.Name))
|
---|
| 390 | MutatorParameter.ValidValues.Add(mutator);
|
---|
| 391 | if (oldMutator != null) {
|
---|
| 392 | IManipulator mutator = MutatorParameter.ValidValues.FirstOrDefault(x => x.GetType() == oldMutator.GetType());
|
---|
| 393 | if (mutator != null) MutatorParameter.Value = mutator;
|
---|
[3076] | 394 | }
|
---|
[2986] | 395 | }
|
---|
[3616] | 396 | private void UpdateAnalyzers() {
|
---|
| 397 | Analyzer.Operators.Clear();
|
---|
| 398 | if (Problem != null) {
|
---|
[3816] | 399 | foreach (IAnalyzer analyzer in Problem.Operators.OfType<IAnalyzer>()) {
|
---|
[3663] | 400 | foreach (IScopeTreeLookupParameter param in analyzer.Parameters.OfType<IScopeTreeLookupParameter>())
|
---|
| 401 | param.Depth = 1;
|
---|
[7172] | 402 | Analyzer.Operators.Add(analyzer, analyzer.EnabledByDefault);
|
---|
[3662] | 403 | }
|
---|
[3616] | 404 | }
|
---|
[7172] | 405 | Analyzer.Operators.Add(qualityAnalyzer, qualityAnalyzer.EnabledByDefault);
|
---|
[3616] | 406 | }
|
---|
[5366] | 407 | private GeneticAlgorithmMainLoop FindMainLoop(IOperator start) {
|
---|
| 408 | IOperator mainLoop = start;
|
---|
| 409 | while (mainLoop != null && !(mainLoop is GeneticAlgorithmMainLoop))
|
---|
| 410 | mainLoop = ((SingleSuccessorOperator)mainLoop).Successor;
|
---|
| 411 | if (mainLoop == null) return null;
|
---|
| 412 | else return (GeneticAlgorithmMainLoop)mainLoop;
|
---|
| 413 | }
|
---|
[2986] | 414 | #endregion
|
---|
[2] | 415 | }
|
---|
| 416 | }
|
---|