Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.TimeSeries/HeuristicLab.Problems.ArtificialAnt/3.4/Analyzers/BestAntTrailAnalyzer.cs @ 7213

Last change on this file since 7213 was 7213, checked in by gkronber, 12 years ago

#1081 merged r7103:7209 from trunk into time series branch

File size: 4.9 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2011 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.Linq;
23using HeuristicLab.Common;
24using HeuristicLab.Core;
25using HeuristicLab.Data;
26using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
27using HeuristicLab.Operators;
28using HeuristicLab.Optimization;
29using HeuristicLab.Parameters;
30using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
31
32namespace HeuristicLab.Problems.ArtificialAnt.Analyzers {
33  /// <summary>
34  /// An operator for analyzing the best ant trail of an artificial ant problem.
35  /// </summary>
36  [Item("BestAntTrailAnalyzer", "An operator for analyzing the best ant trail of an artificial ant problem.")]
37  [StorableClass]
38  public sealed class BestAntTrailAnalyzer : SingleSuccessorOperator, IAntTrailAnalyzer {
39    public bool EnabledByDefault {
40      get { return true; }
41    }
42
43    public ILookupParameter<BoolMatrix> WorldParameter {
44      get { return (ILookupParameter<BoolMatrix>)Parameters["World"]; }
45    }
46    public ScopeTreeLookupParameter<SymbolicExpressionTree> SymbolicExpressionTreeParameter {
47      get { return (ScopeTreeLookupParameter<SymbolicExpressionTree>)Parameters["SymbolicExpressionTree"]; }
48    }
49    public ScopeTreeLookupParameter<DoubleValue> QualityParameter {
50      get { return (ScopeTreeLookupParameter<DoubleValue>)Parameters["Quality"]; }
51    }
52    public ILookupParameter<IntValue> MaxTimeStepsParameter {
53      get { return (ILookupParameter<IntValue>)Parameters["MaxTimeSteps"]; }
54    }
55    public ILookupParameter<AntTrail> BestSolutionParameter {
56      get { return (ILookupParameter<AntTrail>)Parameters["BestSolution"]; }
57    }
58    public ValueLookupParameter<ResultCollection> ResultsParameter {
59      get { return (ValueLookupParameter<ResultCollection>)Parameters["Results"]; }
60    }
61
62    public BestAntTrailAnalyzer()
63      : base() {
64      Parameters.Add(new LookupParameter<BoolMatrix>("World", "The world with food items for the artificial ant."));
65      Parameters.Add(new ScopeTreeLookupParameter<SymbolicExpressionTree>("SymbolicExpressionTree", "The artificial ant solutions from which the best solution should be visualized."));
66      Parameters.Add(new ScopeTreeLookupParameter<DoubleValue>("Quality", "The qualities of the artificial ant solutions which should be visualized."));
67      Parameters.Add(new LookupParameter<AntTrail>("BestSolution", "The visual representation of the best ant trail."));
68      Parameters.Add(new LookupParameter<IntValue>("MaxTimeSteps", "The maximal time steps that the artificial ant has available to collect all food items."));
69      Parameters.Add(new ValueLookupParameter<ResultCollection>("Results", "The result collection where the best artificial ant solution should be stored."));
70    }
71
72    [StorableConstructor]
73    private BestAntTrailAnalyzer(bool deserializing) : base(deserializing) { }
74    private BestAntTrailAnalyzer(BestAntTrailAnalyzer original, Cloner cloner)
75      : base(original, cloner) {
76    }
77    public override IDeepCloneable Clone(Cloner cloner) {
78      return new BestAntTrailAnalyzer(this, cloner);
79    }
80
81    public override IOperation Apply() {
82      ItemArray<SymbolicExpressionTree> expressions = SymbolicExpressionTreeParameter.ActualValue;
83      ItemArray<DoubleValue> qualities = QualityParameter.ActualValue;
84      BoolMatrix world = WorldParameter.ActualValue;
85      IntValue maxTimeSteps = MaxTimeStepsParameter.ActualValue;
86      ResultCollection results = ResultsParameter.ActualValue;
87
88      int i = qualities.Select((x, index) => new { index, x.Value }).OrderBy(x => -x.Value).First().index;
89
90      AntTrail antTrail = BestSolutionParameter.ActualValue;
91      if (antTrail == null) {
92        var bestAntTrail = new AntTrail(world, expressions[i], maxTimeSteps);
93        BestSolutionParameter.ActualValue = bestAntTrail;
94        results.Add(new Result("Best Artificial Ant Solution", bestAntTrail));
95      } else {
96        antTrail.World = world;
97        antTrail.SymbolicExpressionTree = expressions[i];
98        antTrail.MaxTimeSteps = maxTimeSteps;
99        results["Best Artificial Ant Solution"].Value = antTrail;
100      }
101      return base.Apply();
102    }
103  }
104}
Note: See TracBrowser for help on using the repository browser.