Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2839_HiveProjectManagement/HeuristicLab.Tests/HeuristicLab-3.3/Samples/GPRobocodeSampleTest.cs @ 16057

Last change on this file since 16057 was 16057, checked in by jkarder, 6 years ago

#2839:

File size: 2.8 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2018 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 HeuristicLab.Algorithms.GeneticAlgorithm;
25using HeuristicLab.Data;
26using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
27using HeuristicLab.Persistence.Default.Xml;
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    [TestMethod]
38    [TestCategory("Samples.Create")]
39    [TestProperty("Time", "medium")]
40    public void CreateGpRobocodeSampleTest() {
41      var ga = CreateGpRobocodeSample();
42      string path = Path.Combine(SamplesUtils.SamplesDirectory, SampleFileName + SamplesUtils.SampleFileExtension);
43      XmlGenerator.Serialize(ga, path);
44    }
45
46    // 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)
47
48    public GeneticAlgorithm CreateGpRobocodeSample() {
49      GeneticAlgorithm ga = new GeneticAlgorithm();
50
51      #region Problem Configuration
52      Problem robocodeProblem = new Problem();
53      if (!robocodeProblem.Enemies.CheckedItems.Any())
54        robocodeProblem.Enemies.Add(new StringValue("sample.Crazy"));
55      #endregion
56      #region Algorithm Configuration
57      ga.Name = "Genetic Programming - Robocode Java Source";
58      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.";
59      ga.Problem = robocodeProblem;
60      SamplesUtils.ConfigureGeneticAlgorithmParameters<TournamentSelector, SubtreeCrossover, MultiSymbolicExpressionTreeArchitectureManipulator>(
61        ga, 50, 1, 50, 0.15, 2);
62
63      ga.Engine = new SequentialEngine.SequentialEngine();
64      #endregion
65
66      return ga;
67    }
68  }
69}
Note: See TracBrowser for help on using the repository browser.