Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2925_AutoDiffForDynamicalModels/HeuristicLab.Tests/HeuristicLab-3.3/Samples/GPRobocodeSampleTest.cs @ 17035

Last change on this file since 17035 was 17035, checked in by gkronber, 5 years ago

#2925: merged r17007:17033 from trunk to branch

File size: 2.9 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2019 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.IO;
23using System.Linq;
24using HEAL.Attic;
25using HeuristicLab.Algorithms.GeneticAlgorithm;
26using HeuristicLab.Data;
27using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
28using HeuristicLab.Problems.GeneticProgramming.Robocode;
29using HeuristicLab.Selection;
30using Microsoft.VisualStudio.TestTools.UnitTesting;
31
32namespace HeuristicLab.Tests {
33  [TestClass]
34  public class GPRobocodeSampleTest {
35    private const string SampleFileName = "SGP_Robocode";
36
37    private static readonly ProtoBufSerializer serializer = new ProtoBufSerializer();
38
39    [TestMethod]
40    [TestCategory("Samples.Create")]
41    [TestProperty("Time", "medium")]
42    public void CreateGpRobocodeSampleTest() {
43      var ga = CreateGpRobocodeSample();
44      string path = Path.Combine(SamplesUtils.SamplesDirectory, SampleFileName + SamplesUtils.SampleFileExtension);
45      serializer.Serialize(ga, path);
46    }
47
48    // there is no unit test for running the sample because a JDK installation would be necessary (and this is not the case on our build server)
49
50    public GeneticAlgorithm CreateGpRobocodeSample() {
51      GeneticAlgorithm ga = new GeneticAlgorithm();
52
53      #region Problem Configuration
54      Problem robocodeProblem = new Problem();
55      if (!robocodeProblem.Enemies.CheckedItems.Any())
56        robocodeProblem.Enemies.Add(new StringValue("sample.Crazy"));
57      #endregion
58      #region Algorithm Configuration
59      ga.Name = "Genetic Programming - Robocode Java Source";
60      ga.Description = "A standard genetic programming algorithm to evolve the java source code for a robocode bot (see http://robocode.sourceforge.net/). An installation of Java SE Developmen Kit (JDK) >= 1.6 is necessary to run this sample.";
61      ga.Problem = robocodeProblem;
62      SamplesUtils.ConfigureGeneticAlgorithmParameters<TournamentSelector, SubtreeCrossover, MultiSymbolicExpressionTreeArchitectureManipulator>(
63        ga, 50, 1, 50, 0.15, 2);
64
65      ga.Engine = new SequentialEngine.SequentialEngine();
66      #endregion
67
68      return ga;
69    }
70  }
71}
Note: See TracBrowser for help on using the repository browser.