- Timestamp:
- 09/26/19 10:02:47 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring/HeuristicLab.Problems.GrammaticalEvolution/3.4/ArtificialAnt/GEArtificialAntProblem.cs
r17226 r17270 68 68 private void AfterDeserialization() { } 69 69 70 public override bool Maximization {71 get { return true; }72 }73 74 70 [Storable] 75 71 // parameters of the wrapped problem cannot be changed therefore it is not strictly necessary to clone and store it … … 86 82 87 83 public GEArtificialAntProblem() : base(new IntegerVectorEncoding()) { 84 Maximization = true; 88 85 wrappedAntProblem = new HeuristicLab.Problems.GeneticProgramming.ArtificialAnt.Problem(); 89 86 Parameters.Add(new ValueParameter<BoolMatrix>("World", "The world for the artificial ant with scattered food items.", wrappedAntProblem.World));
Note: See TracChangeset
for help on using the changeset viewer.