[13266] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[17180] | 3 | * Copyright (C) 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 |
|
---|
| 22 | using System.IO;
|
---|
| 23 | using System.Linq;
|
---|
[17021] | 24 | using HEAL.Attic;
|
---|
[13266] | 25 | using HeuristicLab.Algorithms.GeneticAlgorithm;
|
---|
[14206] | 26 | using HeuristicLab.Data;
|
---|
[13266] | 27 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
|
---|
| 28 | using HeuristicLab.Problems.GeneticProgramming.Robocode;
|
---|
| 29 | using HeuristicLab.Selection;
|
---|
| 30 | using Microsoft.VisualStudio.TestTools.UnitTesting;
|
---|
| 31 |
|
---|
| 32 | namespace 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 | }
|
---|