Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PerformanceComparison/HeuristicLab.Algorithms.MemPR/3.3/MemPRAlgorithm.cs @ 14666

Last change on this file since 14666 was 14666, checked in by abeham, 7 years ago

#2457: copied MemPR algorithm from its branch to this branch

File size: 30.7 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2016 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
22using System;
23using System.Collections.Generic;
24using System.ComponentModel;
25using System.Linq;
26using System.Threading;
27using HeuristicLab.Algorithms.MemPR.Interfaces;
28using HeuristicLab.Analysis;
29using HeuristicLab.Common;
30using HeuristicLab.Core;
31using HeuristicLab.Data;
32using HeuristicLab.Optimization;
33using HeuristicLab.Parameters;
34using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
35using HeuristicLab.Random;
36
37namespace HeuristicLab.Algorithms.MemPR {
38  [Item("MemPR Algorithm", "Base class for MemPR algorithms")]
39  [StorableClass]
40  public abstract class MemPRAlgorithm<TProblem, TSolution, TPopulationContext, TSolutionContext> : BasicAlgorithm, INotifyPropertyChanged
41      where TProblem : class, IItem, ISingleObjectiveHeuristicOptimizationProblem
42      where TSolution : class, IItem
43      where TPopulationContext : MemPRPopulationContext<TProblem, TSolution, TPopulationContext, TSolutionContext>, new()
44      where TSolutionContext : MemPRSolutionContext<TProblem, TSolution, TPopulationContext, TSolutionContext> {
45
46    public override Type ProblemType {
47      get { return typeof(TProblem); }
48    }
49
50    public new TProblem Problem {
51      get { return (TProblem)base.Problem; }
52      set { base.Problem = value; }
53    }
54
55    public override bool SupportsPause {
56      get { return true; }
57    }
58
59    protected string QualityName {
60      get { return Problem != null && Problem.Evaluator != null ? Problem.Evaluator.QualityParameter.ActualName : null; }
61    }
62
63    public int? MaximumEvaluations {
64      get {
65        var val = ((OptionalValueParameter<IntValue>)Parameters["MaximumEvaluations"]).Value;
66        return val != null ? val.Value : (int?)null;
67      }
68      set {
69        var param = (OptionalValueParameter<IntValue>)Parameters["MaximumEvaluations"];
70        param.Value = value.HasValue ? new IntValue(value.Value) : null;
71      }
72    }
73
74    public TimeSpan? MaximumExecutionTime {
75      get {
76        var val = ((OptionalValueParameter<TimeSpanValue>)Parameters["MaximumExecutionTime"]).Value;
77        return val != null ? val.Value : (TimeSpan?)null;
78      }
79      set {
80        var param = (OptionalValueParameter<TimeSpanValue>)Parameters["MaximumExecutionTime"];
81        param.Value = value.HasValue ? new TimeSpanValue(value.Value) : null;
82      }
83    }
84
85    public double? TargetQuality {
86      get {
87        var val = ((OptionalValueParameter<DoubleValue>)Parameters["TargetQuality"]).Value;
88        return val != null ? val.Value : (double?)null;
89      }
90      set {
91        var param = (OptionalValueParameter<DoubleValue>)Parameters["TargetQuality"];
92        param.Value = value.HasValue ? new DoubleValue(value.Value) : null;
93      }
94    }
95
96    protected FixedValueParameter<IntValue> MaximumPopulationSizeParameter {
97      get { return ((FixedValueParameter<IntValue>)Parameters["MaximumPopulationSize"]); }
98    }
99    public int MaximumPopulationSize {
100      get { return MaximumPopulationSizeParameter.Value.Value; }
101      set { MaximumPopulationSizeParameter.Value.Value = value; }
102    }
103
104    public bool SetSeedRandomly {
105      get { return ((FixedValueParameter<BoolValue>)Parameters["SetSeedRandomly"]).Value.Value; }
106      set { ((FixedValueParameter<BoolValue>)Parameters["SetSeedRandomly"]).Value.Value = value; }
107    }
108
109    public int Seed {
110      get { return ((FixedValueParameter<IntValue>)Parameters["Seed"]).Value.Value; }
111      set { ((FixedValueParameter<IntValue>)Parameters["Seed"]).Value.Value = value; }
112    }
113
114    public IAnalyzer Analyzer {
115      get { return ((ValueParameter<IAnalyzer>)Parameters["Analyzer"]).Value; }
116      set { ((ValueParameter<IAnalyzer>)Parameters["Analyzer"]).Value = value; }
117    }
118
119    public IConstrainedValueParameter<ISolutionModelTrainer<TPopulationContext>> SolutionModelTrainerParameter {
120      get { return (IConstrainedValueParameter<ISolutionModelTrainer<TPopulationContext>>)Parameters["SolutionModelTrainer"]; }
121    }
122
123    public IConstrainedValueParameter<ILocalSearch<TSolutionContext>> LocalSearchParameter {
124      get { return (IConstrainedValueParameter<ILocalSearch<TSolutionContext>>)Parameters["LocalSearch"]; }
125    }
126
127    [Storable]
128    private TPopulationContext context;
129    public TPopulationContext Context {
130      get { return context; }
131      protected set {
132        if (context == value) return;
133        context = value;
134        OnPropertyChanged("State");
135      }
136    }
137
138    [Storable]
139    private BestAverageWorstQualityAnalyzer qualityAnalyzer;
140    [Storable]
141    private QualityPerClockAnalyzer qualityPerClockAnalyzer;
142    [Storable]
143    private QualityPerEvaluationsAnalyzer qualityPerEvaluationsAnalyzer;
144
145    [StorableConstructor]
146    protected MemPRAlgorithm(bool deserializing) : base(deserializing) { }
147    protected MemPRAlgorithm(MemPRAlgorithm<TProblem, TSolution, TPopulationContext, TSolutionContext> original, Cloner cloner) : base(original, cloner) {
148      context = cloner.Clone(original.context);
149      qualityAnalyzer = cloner.Clone(original.qualityAnalyzer);
150      qualityPerClockAnalyzer = cloner.Clone(original.qualityPerClockAnalyzer);
151      qualityPerEvaluationsAnalyzer = cloner.Clone(original.qualityPerEvaluationsAnalyzer);
152
153      RegisterEventHandlers();
154    }
155    protected MemPRAlgorithm() {
156      Parameters.Add(new ValueParameter<IAnalyzer>("Analyzer", "The analyzer to apply to the population.", new MultiAnalyzer()));
157      Parameters.Add(new FixedValueParameter<IntValue>("MaximumPopulationSize", "The maximum size of the population that is evolved.", new IntValue(20)));
158      Parameters.Add(new OptionalValueParameter<IntValue>("MaximumEvaluations", "The maximum number of solution evaluations."));
159      Parameters.Add(new OptionalValueParameter<TimeSpanValue>("MaximumExecutionTime", "The maximum runtime.", new TimeSpanValue(TimeSpan.FromMinutes(10))));
160      Parameters.Add(new OptionalValueParameter<DoubleValue>("TargetQuality", "The target quality at which the algorithm terminates."));
161      Parameters.Add(new FixedValueParameter<BoolValue>("SetSeedRandomly", "Whether each run of the algorithm should be conducted with a new random seed.", new BoolValue(true)));
162      Parameters.Add(new FixedValueParameter<IntValue>("Seed", "The random number seed that is used in case SetSeedRandomly is false.", new IntValue(0)));
163      Parameters.Add(new ConstrainedValueParameter<ISolutionModelTrainer<TPopulationContext>>("SolutionModelTrainer", "The object that creates a solution model that can be sampled."));
164      Parameters.Add(new ConstrainedValueParameter<ILocalSearch<TSolutionContext>>("LocalSearch", "The local search operator to use."));
165
166      qualityAnalyzer = new BestAverageWorstQualityAnalyzer();
167      qualityPerClockAnalyzer = new QualityPerClockAnalyzer();
168      qualityPerEvaluationsAnalyzer = new QualityPerEvaluationsAnalyzer();
169
170      RegisterEventHandlers();
171    }
172
173    [StorableHook(HookType.AfterDeserialization)]
174    private void AfterDeserialization() {
175      RegisterEventHandlers();
176    }
177
178    private void RegisterEventHandlers() {
179      MaximumPopulationSizeParameter.Value.ValueChanged += MaximumPopulationSizeOnChanged;
180    }
181
182    private void MaximumPopulationSizeOnChanged(object sender, EventArgs eventArgs) {
183      if (ExecutionState == ExecutionState.Started || ExecutionState == ExecutionState.Paused)
184        throw new InvalidOperationException("Cannot change maximum population size before algorithm finishes.");
185      Prepare();
186    }
187
188    protected override void OnProblemChanged() {
189      base.OnProblemChanged();
190      qualityAnalyzer.MaximizationParameter.ActualName = Problem.MaximizationParameter.Name;
191      qualityAnalyzer.MaximizationParameter.Hidden = true;
192      qualityAnalyzer.QualityParameter.ActualName = Problem.Evaluator.QualityParameter.ActualName;
193      qualityAnalyzer.QualityParameter.Depth = 1;
194      qualityAnalyzer.QualityParameter.Hidden = true;
195      qualityAnalyzer.BestKnownQualityParameter.ActualName = Problem.BestKnownQualityParameter.Name;
196      qualityAnalyzer.BestKnownQualityParameter.Hidden = true;
197
198      var multiAnalyzer = Analyzer as MultiAnalyzer;
199      if (multiAnalyzer != null) {
200        multiAnalyzer.Operators.Clear();
201        if (Problem != null) {
202          foreach (var analyzer in Problem.Operators.OfType<IAnalyzer>()) {
203            foreach (var param in analyzer.Parameters.OfType<IScopeTreeLookupParameter>())
204              param.Depth = 1;
205            multiAnalyzer.Operators.Add(analyzer, analyzer.EnabledByDefault || analyzer is ISimilarityBasedOperator);
206          }
207        }
208        multiAnalyzer.Operators.Add(qualityAnalyzer, qualityAnalyzer.EnabledByDefault);
209        multiAnalyzer.Operators.Add(qualityPerClockAnalyzer, true);
210        multiAnalyzer.Operators.Add(qualityPerEvaluationsAnalyzer, true);
211      }
212    }
213
214    public override void Prepare() {
215      base.Prepare();
216      Results.Clear();
217      Context = null;
218    }
219
220    protected virtual TPopulationContext CreateContext() {
221      return new TPopulationContext();
222    }
223
224    protected sealed override void Run(CancellationToken token) {
225      if (Context == null) {
226        Context = CreateContext();
227        if (SetSeedRandomly) Seed = new System.Random().Next();
228        Context.Random.Reset(Seed);
229        Context.Scope.Variables.Add(new Variable("Results", Results));
230        Context.Problem = Problem;
231      }
232
233      if (MaximumExecutionTime.HasValue)
234        CancellationTokenSource.CancelAfter(MaximumExecutionTime.Value);
235
236      IExecutionContext context = null;
237      foreach (var item in Problem.ExecutionContextItems)
238        context = new Core.ExecutionContext(context, item, Context.Scope);
239      context = new Core.ExecutionContext(context, this, Context.Scope);
240      Context.Parent = context;
241
242      if (!Context.Initialized) {
243        // We initialize the population with two local optima
244        while (Context.PopulationCount < 2) {
245          var child = Create(token);
246          Context.LocalSearchEvaluations += HillClimb(child, token);
247          Context.LocalOptimaLevel += child.Fitness;
248          Context.AddToPopulation(child);
249          Context.BestQuality = child.Fitness;
250          Analyze(CancellationToken.None);
251          token.ThrowIfCancellationRequested();
252          if (Terminate()) return;
253        }
254        Context.LocalSearchEvaluations /= 2;
255        Context.LocalOptimaLevel /= 2;
256        Context.Initialized = true;
257      }
258
259      while (!Terminate()) {
260        Iterate(token);
261        Analyze(token);
262        token.ThrowIfCancellationRequested();
263      }
264    }
265
266    private void Iterate(CancellationToken token) {
267      var replaced = false;
268      ISingleObjectiveSolutionScope<TSolution> offspring = null;
269     
270      offspring = Breed(token);
271      if (offspring != null) {
272        var replNew = Replace(offspring, token);
273        if (replNew) {
274          replaced = true;
275          Context.ByBreeding++;
276        }
277      }
278
279      offspring = Relink(token);
280      if (offspring != null) {
281        if (Replace(offspring, token)) {
282          replaced = true;
283          Context.ByRelinking++;
284        }
285      }
286
287      offspring = Delink(token);
288      if (offspring != null) {
289        if (Replace(offspring, token)) {
290          replaced = true;
291          Context.ByDelinking++;
292        }
293      }
294
295      offspring = Sample(token);
296      if (offspring != null) {
297        if (Replace(offspring, token)) {
298          replaced = true;
299          Context.BySampling++;
300        }
301      }
302
303      if (!replaced && offspring != null) {
304        if (Context.HillclimbingSuited(offspring.Fitness)) {
305          HillClimb(offspring, token, CalculateSubspace(Context.Population.Select(x => x.Solution)));
306          if (Replace(offspring, token)) {
307            Context.ByHillclimbing++;
308            replaced = true;
309          }
310        }
311      }
312
313      if (!replaced) {
314        var before = Context.Population.SampleRandom(Context.Random);
315        offspring = (ISingleObjectiveSolutionScope<TSolution>)before.Clone();
316        AdaptiveWalk(offspring, Context.LocalSearchEvaluations * 2, token);
317        if (!Eq(before, offspring))
318          Context.AddAdaptivewalkingResult(before, offspring);
319        if (Replace(offspring, token)) {
320          Context.ByAdaptivewalking++;
321          replaced = true;
322        }
323      }
324
325      Context.Iterations++;
326    }
327
328    protected void Analyze(CancellationToken token) {
329      IResult res;
330      if (!Results.TryGetValue("EvaluatedSolutions", out res))
331        Results.Add(new Result("EvaluatedSolutions", new IntValue(Context.EvaluatedSolutions)));
332      else ((IntValue)res.Value).Value = Context.EvaluatedSolutions;
333      if (!Results.TryGetValue("Iterations", out res))
334        Results.Add(new Result("Iterations", new IntValue(Context.Iterations)));
335      else ((IntValue)res.Value).Value = Context.Iterations;
336      if (!Results.TryGetValue("LocalSearch Evaluations", out res))
337        Results.Add(new Result("LocalSearch Evaluations", new IntValue(Context.LocalSearchEvaluations)));
338      else ((IntValue)res.Value).Value = Context.LocalSearchEvaluations;
339      if (!Results.TryGetValue("ByBreeding", out res))
340        Results.Add(new Result("ByBreeding", new IntValue(Context.ByBreeding)));
341      else ((IntValue)res.Value).Value = Context.ByBreeding;
342      if (!Results.TryGetValue("ByRelinking", out res))
343        Results.Add(new Result("ByRelinking", new IntValue(Context.ByRelinking)));
344      else ((IntValue)res.Value).Value = Context.ByRelinking;
345      if (!Results.TryGetValue("ByDelinking", out res))
346        Results.Add(new Result("ByDelinking", new IntValue(Context.ByDelinking)));
347      else ((IntValue)res.Value).Value = Context.ByDelinking;
348      if (!Results.TryGetValue("BySampling", out res))
349        Results.Add(new Result("BySampling", new IntValue(Context.BySampling)));
350      else ((IntValue)res.Value).Value = Context.BySampling;
351      if (!Results.TryGetValue("ByHillclimbing", out res))
352        Results.Add(new Result("ByHillclimbing", new IntValue(Context.ByHillclimbing)));
353      else ((IntValue)res.Value).Value = Context.ByHillclimbing;
354      if (!Results.TryGetValue("ByAdaptivewalking", out res))
355        Results.Add(new Result("ByAdaptivewalking", new IntValue(Context.ByAdaptivewalking)));
356      else ((IntValue)res.Value).Value = Context.ByAdaptivewalking;
357
358      var sp = new ScatterPlot("Breeding Correlation", "");
359      sp.Rows.Add(new ScatterPlotDataRow("Parent1 vs Offspring", "", Context.BreedingStat.Select(x => new Point2D<double>(x.Item1, x.Item4))) { VisualProperties = { PointSize = 6 }});
360      sp.Rows.Add(new ScatterPlotDataRow("Parent2 vs Offspring", "", Context.BreedingStat.Select(x => new Point2D<double>(x.Item2, x.Item4))) { VisualProperties = { PointSize = 6 } });
361      sp.Rows.Add(new ScatterPlotDataRow("Parent Distance vs Offspring", "", Context.BreedingStat.Select(x => new Point2D<double>(x.Item3, x.Item4))) { VisualProperties = { PointSize = 6 } });
362      if (!Results.TryGetValue("BreedingStat", out res)) {
363        Results.Add(new Result("BreedingStat", sp));
364      } else res.Value = sp;
365
366      sp = new ScatterPlot("Relinking Correlation", "");
367      sp.Rows.Add(new ScatterPlotDataRow("A vs Relink", "", Context.RelinkingStat.Select(x => new Point2D<double>(x.Item1, x.Item4))) { VisualProperties = { PointSize = 6 } });
368      sp.Rows.Add(new ScatterPlotDataRow("B vs Relink", "", Context.RelinkingStat.Select(x => new Point2D<double>(x.Item2, x.Item4))) { VisualProperties = { PointSize = 6 } });
369      sp.Rows.Add(new ScatterPlotDataRow("d(A,B) vs Offspring", "", Context.RelinkingStat.Select(x => new Point2D<double>(x.Item3, x.Item4))) { VisualProperties = { PointSize = 6 } });
370      if (!Results.TryGetValue("RelinkingStat", out res)) {
371        Results.Add(new Result("RelinkingStat", sp));
372      } else res.Value = sp;
373
374      sp = new ScatterPlot("Delinking Correlation", "");
375      sp.Rows.Add(new ScatterPlotDataRow("A vs Delink", "", Context.DelinkingStat.Select(x => new Point2D<double>(x.Item1, x.Item4))) { VisualProperties = { PointSize = 6 } });
376      sp.Rows.Add(new ScatterPlotDataRow("B vs Delink", "", Context.DelinkingStat.Select(x => new Point2D<double>(x.Item2, x.Item4))) { VisualProperties = { PointSize = 6 } });
377      sp.Rows.Add(new ScatterPlotDataRow("d(A,B) vs Offspring", "", Context.DelinkingStat.Select(x => new Point2D<double>(x.Item3, x.Item4))) { VisualProperties = { PointSize = 6 } });
378      if (!Results.TryGetValue("DelinkingStat", out res)) {
379        Results.Add(new Result("DelinkingStat", sp));
380      } else res.Value = sp;
381
382      sp = new ScatterPlot("Sampling Correlation", "");
383      sp.Rows.Add(new ScatterPlotDataRow("AvgFitness vs Sample", "", Context.SamplingStat.Select(x => new Point2D<double>(x.Item1, x.Item2))) { VisualProperties = { PointSize = 6 } });
384      if (!Results.TryGetValue("SampleStat", out res)) {
385        Results.Add(new Result("SampleStat", sp));
386      } else res.Value = sp;
387
388      sp = new ScatterPlot("Hillclimbing Correlation", "");
389      sp.Rows.Add(new ScatterPlotDataRow("Start vs Improvement", "", Context.HillclimbingStat.Select(x => new Point2D<double>(x.Item1, x.Item2))) { VisualProperties = { PointSize = 6 } });
390      if (!Results.TryGetValue("HillclimbingStat", out res)) {
391        Results.Add(new Result("HillclimbingStat", sp));
392      } else res.Value = sp;
393
394      sp = new ScatterPlot("Adaptivewalking Correlation", "");
395      sp.Rows.Add(new ScatterPlotDataRow("Start vs Best", "", Context.AdaptivewalkingStat.Select(x => new Point2D<double>(x.Item1, x.Item2))) { VisualProperties = { PointSize = 6 } });
396      if (!Results.TryGetValue("AdaptivewalkingStat", out res)) {
397        Results.Add(new Result("AdaptivewalkingStat", sp));
398      } else res.Value = sp;
399
400      Context.RunOperator(Analyzer, Context.Scope, token);
401    }
402
403    protected bool Replace(ISingleObjectiveSolutionScope<TSolution> child, CancellationToken token) {
404      if (double.IsNaN(child.Fitness)) {
405        Context.Evaluate(child, token);
406        Context.IncrementEvaluatedSolutions(1);
407      }
408      if (Context.IsBetter(child.Fitness, Context.BestQuality)) {
409        Context.BestQuality = child.Fitness;
410        Context.BestSolution = (TSolution)child.Solution.Clone();
411      }
412
413      var popSize = MaximumPopulationSize;
414      if (Context.Population.All(p => !Eq(p, child))) {
415
416        if (Context.PopulationCount < popSize) {
417          Context.AddToPopulation(child);
418          return true;// Context.PopulationCount - 1;
419        }
420       
421        // The set of replacement candidates consists of all solutions at least as good as the new one
422        var candidates = Context.Population.Select((p, i) => new { Index = i, Individual = p })
423                                         .Where(x => x.Individual.Fitness == child.Fitness
424                                           || Context.IsBetter(child, x.Individual)).ToList();
425        if (candidates.Count == 0) return false;// -1;
426
427        var repCand = -1;
428        var avgChildDist = 0.0;
429        var minChildDist = double.MaxValue;
430        var plateau = new List<int>();
431        var worstPlateau = -1;
432        var minAvgPlateauDist = double.MaxValue;
433        var minPlateauDist = double.MaxValue;
434        // If there are equally good solutions it is first tried to replace one of those
435        // The criteria for replacement is that the new solution has better average distance
436        // to all other solutions at this "plateau"
437        foreach (var c in candidates.Where(x => x.Individual.Fitness == child.Fitness)) {
438          var dist = Dist(c.Individual, child);
439          avgChildDist += dist;
440          if (dist < minChildDist) minChildDist = dist;
441          plateau.Add(c.Index);
442        }
443        if (plateau.Count > 2) {
444          avgChildDist /= plateau.Count;
445          foreach (var p in plateau) {
446            var avgDist = 0.0;
447            var minDist = double.MaxValue;
448            foreach (var q in plateau) {
449              if (p == q) continue;
450              var dist = Dist(Context.AtPopulation(p), Context.AtPopulation(q));
451              avgDist += dist;
452              if (dist < minDist) minDist = dist;
453            }
454
455            var d = Dist(Context.AtPopulation(p), child);
456            avgDist += d;
457            avgDist /= plateau.Count;
458            if (d < minDist) minDist = d;
459
460            if (minDist < minPlateauDist || (minDist == minPlateauDist && avgDist < avgChildDist)) {
461              minAvgPlateauDist = avgDist;
462              minPlateauDist = minDist;
463              worstPlateau = p;
464            }
465          }
466          if (minPlateauDist < minChildDist || (minPlateauDist == minChildDist && minAvgPlateauDist < avgChildDist))
467            repCand = worstPlateau;
468        }
469
470        if (repCand < 0) {
471          // If no solution at the same plateau were identified for replacement
472          // a worse solution with smallest distance is chosen
473          var minDist = double.MaxValue;
474          foreach (var c in candidates.Where(x => Context.IsBetter(child, x.Individual))) {
475            var d = Dist(c.Individual, child);
476            if (d < minDist) {
477              minDist = d;
478              repCand = c.Index;
479            }
480          }
481        }
482
483        // If no replacement was identified, this can only mean that there are
484        // no worse solutions and those on the same plateau are all better
485        // stretched out than the new one
486        if (repCand < 0) return false;// -1;
487       
488        Context.ReplaceAtPopulation(repCand, child);
489        return true;// repCand;
490      }
491      return false;// -1;
492    }
493
494    protected bool Eq(ISingleObjectiveSolutionScope<TSolution> a, ISingleObjectiveSolutionScope<TSolution> b) {
495      return Eq(a.Solution, b.Solution);
496    }
497    protected abstract bool Eq(TSolution a, TSolution b);
498    protected abstract double Dist(ISingleObjectiveSolutionScope<TSolution> a, ISingleObjectiveSolutionScope<TSolution> b);
499    protected abstract ISolutionSubspace<TSolution> CalculateSubspace(IEnumerable<TSolution> solutions, bool inverse = false);
500
501    #region Create
502    protected virtual ISingleObjectiveSolutionScope<TSolution> Create(CancellationToken token) {
503      var child = Context.ToScope(null);
504      Context.RunOperator(Problem.SolutionCreator, child, token);
505      return child;
506    }
507    #endregion
508
509    #region Improve
510    protected virtual int HillClimb(ISingleObjectiveSolutionScope<TSolution> scope, CancellationToken token, ISolutionSubspace<TSolution> subspace = null) {
511      if (double.IsNaN(scope.Fitness)) {
512        Context.Evaluate(scope, token);
513        Context.IncrementEvaluatedSolutions(1);
514      }
515      var before = (ISingleObjectiveSolutionScope<TSolution>)scope.Clone();
516      var lscontext = Context.CreateSingleSolutionContext(scope);
517      LocalSearchParameter.Value.Optimize(lscontext);
518      Context.AddHillclimbingResult(before, scope);
519      Context.IncrementEvaluatedSolutions(lscontext.EvaluatedSolutions);
520      return lscontext.EvaluatedSolutions;
521    }
522
523    protected virtual void AdaptiveClimb(ISingleObjectiveSolutionScope<TSolution> scope, int maxEvals, CancellationToken token, ISolutionSubspace<TSolution> subspace = null) {
524      if (double.IsNaN(scope.Fitness)) {
525        Context.Evaluate(scope, token);
526        Context.IncrementEvaluatedSolutions(1);
527      }
528      var newScope = (ISingleObjectiveSolutionScope<TSolution>)scope.Clone();
529      AdaptiveWalk(newScope, maxEvals, token, subspace);
530     
531      Context.AddAdaptivewalkingResult(scope, newScope);
532      if (Context.IsBetter(newScope, scope)) {
533        scope.Adopt(newScope);
534      }
535    }
536    protected abstract void AdaptiveWalk(ISingleObjectiveSolutionScope<TSolution> scope, int maxEvals, CancellationToken token, ISolutionSubspace<TSolution> subspace = null);
537   
538    #endregion
539
540    #region Breed
541    protected virtual ISingleObjectiveSolutionScope<TSolution> Breed(CancellationToken token) {
542      var i1 = Context.Random.Next(Context.PopulationCount);
543      var i2 = Context.Random.Next(Context.PopulationCount);
544      while (i1 == i2) i2 = Context.Random.Next(Context.PopulationCount);
545
546      var p1 = Context.AtPopulation(i1);
547      var p2 = Context.AtPopulation(i2);
548
549      if (double.IsNaN(p1.Fitness)) {
550        Context.Evaluate(p1, token);
551        Context.IncrementEvaluatedSolutions(1);
552      }
553      if (double.IsNaN(p2.Fitness)) {
554        Context.Evaluate(p2, token);
555        Context.IncrementEvaluatedSolutions(1);
556      }
557
558      if (!Context.BreedingSuited(p1, p2, Dist(p1, p2))) return null;
559
560      var offspring = Breed(p1, p2, token);
561
562      if (double.IsNaN(offspring.Fitness)) {
563        Context.Evaluate(offspring, token);
564        Context.IncrementEvaluatedSolutions(1);
565      }
566
567      Context.AddBreedingResult(p1, p2, Dist(p1, p2), offspring);
568
569      // new best solutions are improved using hill climbing in full solution space
570      if (Context.Population.All(p => Context.IsBetter(offspring, p)))
571        HillClimb(offspring, token);
572      else if (!Eq(offspring, p1) && !Eq(offspring, p2) && Context.HillclimbingSuited(offspring.Fitness))
573        HillClimb(offspring, token, CalculateSubspace(new[] { p1.Solution, p2.Solution }, inverse: false));
574
575      return offspring;
576    }
577
578    protected abstract ISingleObjectiveSolutionScope<TSolution> Breed(ISingleObjectiveSolutionScope<TSolution> p1, ISingleObjectiveSolutionScope<TSolution> p2, CancellationToken token);
579    #endregion
580
581    #region Relink/Delink
582    protected virtual ISingleObjectiveSolutionScope<TSolution> Relink(CancellationToken token) {
583      var i1 = Context.Random.Next(Context.PopulationCount);
584      var i2 = Context.Random.Next(Context.PopulationCount);
585      while (i1 == i2) i2 = Context.Random.Next(Context.PopulationCount);
586
587      var p1 = Context.AtPopulation(i1);
588      var p2 = Context.AtPopulation(i2);
589
590      if (!Context.RelinkSuited(p1, p2, Dist(p1, p2))) return null;
591
592      var link = PerformRelinking(p1, p2, token, delink: false);
593
594      // new best solutions are improved using hill climbing in full solution space
595      if (Context.Population.All(p => Context.IsBetter(link, p)))
596        HillClimb(link, token);
597      else if (!Eq(link, p1) && !Eq(link, p2) && Context.HillclimbingSuited(link.Fitness))
598        HillClimb(link, token, CalculateSubspace(new[] { p1.Solution, p2.Solution }, inverse: true));
599
600      return link;
601    }
602
603    protected virtual ISingleObjectiveSolutionScope<TSolution> Delink(CancellationToken token) {
604      var i1 = Context.Random.Next(Context.PopulationCount);
605      var i2 = Context.Random.Next(Context.PopulationCount);
606      while (i1 == i2) i2 = Context.Random.Next(Context.PopulationCount);
607
608      var p1 = Context.AtPopulation(i1);
609      var p2 = Context.AtPopulation(i2);
610     
611      if (!Context.DelinkSuited(p1, p2, Dist(p1, p2))) return null;
612
613      var link = PerformRelinking(p1, p2, token, delink: true);
614
615      // new best solutions are improved using hill climbing in full solution space
616      if (Context.Population.All(p => Context.IsBetter(link, p)))
617        HillClimb(link, token);
618      // intentionally not making hill climbing otherwise after delinking in sub-space
619      return link;
620    }
621
622    protected virtual ISingleObjectiveSolutionScope<TSolution> PerformRelinking(ISingleObjectiveSolutionScope<TSolution> a, ISingleObjectiveSolutionScope<TSolution> b, CancellationToken token, bool delink = false) {
623      var relink = Link(a, b, token, delink);
624
625      if (double.IsNaN(relink.Fitness)) {
626        Context.Evaluate(relink, token);
627        Context.IncrementEvaluatedSolutions(1);
628      }
629
630      if (delink) {
631        Context.AddDelinkingResult(a, b, Dist(a, b), relink);
632      } else {
633        Context.AddRelinkingResult(a, b, Dist(a, b), relink);
634      }
635
636      return relink;
637    }
638
639    protected abstract ISingleObjectiveSolutionScope<TSolution> Link(ISingleObjectiveSolutionScope<TSolution> a, ISingleObjectiveSolutionScope<TSolution> b, CancellationToken token, bool delink = false);
640    #endregion
641
642    #region Sample
643    protected virtual ISingleObjectiveSolutionScope<TSolution> Sample(CancellationToken token) {
644      if (Context.PopulationCount == MaximumPopulationSize) {
645        SolutionModelTrainerParameter.Value.TrainModel(Context);
646        ISingleObjectiveSolutionScope<TSolution> bestSample = null;
647        var tries = 1;
648        var avgDist = (from a in Context.Population.Shuffle(Context.Random)
649                       from b in Context.Population.Shuffle(Context.Random)
650                       select Dist(a, b)).Average();
651        for (; tries < 100; tries++) {
652          var sample = Context.ToScope(Context.Model.Sample());
653          Context.Evaluate(sample, token);
654          if (bestSample == null || Context.IsBetter(sample, bestSample)) {
655            bestSample = sample;
656            if (Context.Population.Any(x => !Context.IsBetter(x, bestSample))) break;
657          }
658          if (!Context.SamplingSuited(avgDist)) break;
659        }
660        Context.IncrementEvaluatedSolutions(tries);
661        Context.AddSamplingResult(bestSample, avgDist);
662        return bestSample;
663      }
664      return null;
665    }
666    #endregion
667
668    protected virtual bool Terminate() {
669      var maximization = ((IValueParameter<BoolValue>)Problem.MaximizationParameter).Value.Value;
670      return MaximumEvaluations.HasValue && Context.EvaluatedSolutions >= MaximumEvaluations.Value
671        || MaximumExecutionTime.HasValue && ExecutionTime >= MaximumExecutionTime.Value
672        || TargetQuality.HasValue && (maximization && Context.BestQuality >= TargetQuality.Value
673                                  || !maximization && Context.BestQuality <= TargetQuality.Value);
674    }
675
676    public event PropertyChangedEventHandler PropertyChanged;
677    protected void OnPropertyChanged(string property) {
678      var handler = PropertyChanged;
679      if (handler != null) handler(this, new PropertyChangedEventArgs(property));
680    }
681  }
682}
Note: See TracBrowser for help on using the repository browser.