Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.Tests/HeuristicLab-3.3/Samples/GPArtificialAntSampleTest.cs @ 11907

Last change on this file since 11907 was 11907, checked in by jkarder, 9 years ago

#2211: merged r11450, r11466, r11483, r11514, r11515 and r11890 into stable
#2234: merged r11308, r11309, r11326, r11337, r11340, r11339, r11342, r11361, r11427, r11447, r11464, r11542, r11544, r11545, r11547, r11548 into stable
#2239: merged r11437, r11439 and r11472 into stable
#2262: merged r11436, r11440, r11471, r11474, r11477, r11479, r11480, r11605, r11657, r11721, r11734, r11735, r11787, r11788, r11789 and r11826 into stable

File size: 3.8 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2014 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.Encodings.SymbolicExpressionTreeEncoding;
26using HeuristicLab.Persistence.Default.Xml;
27using HeuristicLab.Problems.ArtificialAnt;
28using HeuristicLab.Selection;
29using Microsoft.VisualStudio.TestTools.UnitTesting;
30
31namespace HeuristicLab.Tests {
32  [TestClass]
33  public class GPArtificialAntSampleTest {
34    private const string SampleFileName = "SGP_SantaFe";
35
36    [TestMethod]
37    [TestCategory("Samples.Create")]
38    [TestProperty("Time", "medium")]
39    public void CreateGpArtificialAntSampleTest() {
40      var ga = CreateGpArtificialAntSample();
41      string path = Path.Combine(SamplesUtils.SamplesDirectory, SampleFileName + SamplesUtils.SampleFileExtension);
42      XmlGenerator.Serialize(ga, path);
43    }
44
45    [TestMethod]
46    [TestCategory("Samples.Execute")]
47    [TestProperty("Time", "long")]
48    public void RunGpArtificialAntSampleTest() {
49      var ga = CreateGpArtificialAntSample();
50      ga.SetSeedRandomly.Value = false;
51      SamplesUtils.RunAlgorithm(ga);
52      Assert.AreEqual(81, SamplesUtils.GetDoubleResult(ga, "BestQuality"));
53      Assert.AreEqual(48.19, SamplesUtils.GetDoubleResult(ga, "CurrentAverageQuality"));
54      Assert.AreEqual(0, SamplesUtils.GetDoubleResult(ga, "CurrentWorstQuality"));
55      Assert.AreEqual(50950, SamplesUtils.GetIntResult(ga, "EvaluatedSolutions"));
56    }
57
58    public GeneticAlgorithm CreateGpArtificialAntSample() {
59      GeneticAlgorithm ga = new GeneticAlgorithm();
60
61      #region Problem Configuration
62      ArtificialAntProblem antProblem = new ArtificialAntProblem();
63      antProblem.BestKnownQuality.Value = 89;
64      antProblem.MaxExpressionDepth.Value = 10;
65      antProblem.MaxExpressionLength.Value = 100;
66      antProblem.MaxFunctionArguments.Value = 3;
67      antProblem.MaxFunctionDefinitions.Value = 3;
68      antProblem.MaxTimeSteps.Value = 600;
69      #endregion
70      #region Algorithm Configuration
71      ga.Name = "Genetic Programming - Artificial Ant";
72      ga.Description = "A standard genetic programming algorithm to solve the artificial ant problem (Santa-Fe trail)";
73      ga.Problem = antProblem;
74      SamplesUtils.ConfigureGeneticAlgorithmParameters<TournamentSelector, SubtreeCrossover, MultiSymbolicExpressionTreeArchitectureManipulator>(
75        ga, 1000, 1, 50, 0.15, 5);
76      var mutator = (MultiSymbolicExpressionTreeArchitectureManipulator)ga.Mutator;
77      mutator.Operators.SetItemCheckedState(mutator.Operators
78        .OfType<FullTreeShaker>()
79        .Single(), false);
80      mutator.Operators.SetItemCheckedState(mutator.Operators
81        .OfType<OnePointShaker>()
82        .Single(), false);
83      mutator.Operators.SetItemCheckedState(mutator.Operators
84        .OfType<ArgumentDeleter>()
85        .Single(), false);
86      mutator.Operators.SetItemCheckedState(mutator.Operators
87        .OfType<SubroutineDeleter>()
88        .Single(), false);
89      #endregion
90
91      return ga;
92    }
93  }
94}
Note: See TracBrowser for help on using the repository browser.