Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/HeuristicLab.Tests/HeuristicLab-3.3/Samples/GPRobocodeSampleTest.cs @ 17021

Last change on this file since 17021 was 17021, checked in by mkommend, 5 years ago

#2520: Adapted all unit tests to use attic instead of the xml persistence. This affects all sample unit tests, the test resources, script unit tests and some general unit tests.

File size: 2.9 KB
RevLine 
[13266]1#region License Information
2/* HeuristicLab
[16565]3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[13266]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;
[17021]24using HEAL.Attic;
[13266]25using HeuristicLab.Algorithms.GeneticAlgorithm;
[14206]26using HeuristicLab.Data;
[13266]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
[17021]37    private static readonly ProtoBufSerializer serializer = new ProtoBufSerializer();
38
[13266]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);
[17021]45      serializer.Serialize(ga, path);
[13266]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
[14206]54      Problem robocodeProblem = new Problem();
55      if (!robocodeProblem.Enemies.CheckedItems.Any())
56        robocodeProblem.Enemies.Add(new StringValue("sample.Crazy"));
[13266]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.";
[14206]61      ga.Problem = robocodeProblem;
[13266]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.