Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.GrammaticalEvolution/3.4/ArtificialAnt/GEArtificialAntProblem.cs @ 13233

Last change on this file since 13233 was 13233, checked in by gkronber, 8 years ago

#2512: synchronized access to PRNG in GEArtificialAntProblem

File size: 5.7 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2015 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 * Author: Sabine Winkler
21 */
22#endregion
23
24using System.Diagnostics.Contracts;
25using System.Linq;
26using HeuristicLab.Common;
27using HeuristicLab.Core;
28using HeuristicLab.Data;
29using HeuristicLab.Encodings.IntegerVectorEncoding;
30using HeuristicLab.Optimization;
31using HeuristicLab.Parameters;
32using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
33using HeuristicLab.Problems.GeneticProgramming.ArtificialAnt;
34using HeuristicLab.Problems.GrammaticalEvolution.Mappers;
35using HeuristicLab.Random;
36
37namespace HeuristicLab.Problems.GrammaticalEvolution {
38  [Item("Grammatical Evolution Artificial Ant Problem", "Represents the Artificial Ant problem, implemented in Grammatical Evolution.")]
39  [Creatable(CreatableAttribute.Categories.GeneticProgrammingProblems, Priority = 170)]
40  [StorableClass]
41  public sealed class GEArtificialAntProblem : SingleObjectiveBasicProblem<IntegerVectorEncoding>, IStorableContent {
42    public string Filename { get; set; }
43
44    #region Parameter Properties
45    public IValueParameter<BoolMatrix> WorldParameter {
46      get { return (IValueParameter<BoolMatrix>)Parameters["World"]; }
47    }
48    public IFixedValueParameter<IntValue> MaxTimeStepsParameter {
49      get { return (IFixedValueParameter<IntValue>)Parameters["MaximumTimeSteps"]; }
50    }
51    public IValueParameter<IGenotypeToPhenotypeMapper> GenotypeToPhenotypeMapperParameter {
52      get { return (IValueParameter<IGenotypeToPhenotypeMapper>)Parameters["GenotypeToPhenotypeMapper"]; }
53    }
54    #endregion
55
56    #region Properties
57    public BoolMatrix World {
58      get { return WorldParameter.Value; }
59      set { WorldParameter.Value = value; }
60    }
61    public int MaxTimeSteps {
62      get { return MaxTimeStepsParameter.Value.Value; }
63      set { MaxTimeStepsParameter.Value.Value = value; }
64    }
65    #endregion
66
67    [StorableConstructor]
68    private GEArtificialAntProblem(bool deserializing) : base(deserializing) { }
69    [StorableHook(HookType.AfterDeserialization)]
70    private void AfterDeserialization() { }
71
72    public override bool Maximization {
73      get { return true; }
74    }
75
76    [Storable]
77    // parameters of the wrapped problem cannot be changed therefore it is not strictly necessary to clone and store it
78    private readonly HeuristicLab.Problems.GeneticProgramming.ArtificialAnt.Problem wrappedAntProblem;
79
80    private GEArtificialAntProblem(GEArtificialAntProblem original, Cloner cloner)
81      : base(original, cloner) {
82      this.wrappedAntProblem = cloner.Clone(original.wrappedAntProblem);
83    }
84
85    public override IDeepCloneable Clone(Cloner cloner) {
86      return new GEArtificialAntProblem(this, cloner);
87    }
88
89    public GEArtificialAntProblem()
90      : base() {
91      wrappedAntProblem = new HeuristicLab.Problems.GeneticProgramming.ArtificialAnt.Problem();
92      Parameters.Add(new ValueParameter<BoolMatrix>("World", "The world for the artificial ant with scattered food items.", wrappedAntProblem.World));
93      Parameters.Add(new FixedValueParameter<IntValue>("MaximumTimeSteps", "The number of time steps the artificial ant has available to collect all food items.", new IntValue(600)));
94      Parameters.Add(new ValueParameter<IGenotypeToPhenotypeMapper>("GenotypeToPhenotypeMapper", "Maps the genotype (an integer vector) to the phenotype (a symbolic expression tree).", new DepthFirstMapper()));
95
96      Encoding = new IntegerVectorEncoding(30) { Bounds = new IntMatrix(new int[,] { { 0, 100 } }) };
97
98      BestKnownQuality = wrappedAntProblem.BestKnownQuality;
99    }
100
101    public override double Evaluate(Individual individual, IRandom random) {
102      var vector = individual.IntegerVector();
103
104      var bounds = Encoding.Bounds;
105      var len = Encoding.Length;
106      var grammar = wrappedAntProblem.Encoding.Grammar;
107      var mapper = GenotypeToPhenotypeMapperParameter.Value;
108
109      // Evaluate might be called concurrently therefore access to random has to be synchronized.
110      // However, results depend on the order of execution. Therefore, results might be different for the same seed when using the parallel engine.
111      IRandom fastRand;
112      lock (random) {
113        fastRand = new FastRandom(random.Next());
114      }
115      var tree = mapper.Map(fastRand, bounds, len, grammar, vector);
116
117      Interpreter interpreter = new Interpreter(tree, World, MaxTimeSteps);
118      interpreter.Run();
119
120      return interpreter.FoodEaten;
121    }
122
123    public override void Analyze(Individual[] individuals, double[] qualities, ResultCollection results, IRandom random) {
124      var bounds = Encoding.Bounds;
125      var len = Encoding.Length;
126      var grammar = wrappedAntProblem.Encoding.Grammar;
127      var mapper = GenotypeToPhenotypeMapperParameter.Value;
128
129      var trees = individuals
130        .Select(ind => mapper.Map(random, bounds, len, grammar, ind.IntegerVector()))
131        .ToArray();
132
133      wrappedAntProblem.Analyze(trees, qualities, results, random);
134    }
135  }
136}
Note: See TracBrowser for help on using the repository browser.