[11450] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[17180] | 3 | * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[11450] | 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;
|
---|
[11450] | 25 | using HeuristicLab.Algorithms.GeneticAlgorithm;
|
---|
| 26 | using HeuristicLab.Encodings.PermutationEncoding;
|
---|
| 27 | using HeuristicLab.Optimization.Operators;
|
---|
| 28 | using HeuristicLab.Problems.Instances.TSPLIB;
|
---|
| 29 | using HeuristicLab.Problems.TravelingSalesman;
|
---|
| 30 | using HeuristicLab.Selection;
|
---|
| 31 | using Microsoft.VisualStudio.TestTools.UnitTesting;
|
---|
| 32 |
|
---|
| 33 | namespace HeuristicLab.Tests {
|
---|
| 34 | [TestClass]
|
---|
| 35 | public class UnitTest1 {
|
---|
[11514] | 36 | private const string SampleFileName = "IslandGA_TSP";
|
---|
[17021] | 37 | private static readonly ProtoBufSerializer serializer = new ProtoBufSerializer();
|
---|
[11450] | 38 |
|
---|
| 39 | [TestMethod]
|
---|
| 40 | [TestCategory("Samples.Create")]
|
---|
| 41 | [TestProperty("Time", "medium")]
|
---|
| 42 | public void CreateIslandGaTspSampleTest() {
|
---|
| 43 | var ga = CreateIslandGaTspSample();
|
---|
[11514] | 44 | string path = Path.Combine(SamplesUtils.SamplesDirectory, SampleFileName + SamplesUtils.SampleFileExtension);
|
---|
[17021] | 45 | serializer.Serialize(ga, path);
|
---|
[11450] | 46 | }
|
---|
| 47 | [TestMethod]
|
---|
| 48 | [TestCategory("Samples.Execute")]
|
---|
| 49 | [TestProperty("Time", "long")]
|
---|
| 50 | public void RunIslandGaTspSampleTest() {
|
---|
| 51 | var ga = CreateIslandGaTspSample();
|
---|
| 52 | ga.SetSeedRandomly.Value = false;
|
---|
| 53 | SamplesUtils.RunAlgorithm(ga);
|
---|
| 54 | Assert.AreEqual(9918, SamplesUtils.GetDoubleResult(ga, "BestQuality"));
|
---|
| 55 | Assert.AreEqual(10324.64, SamplesUtils.GetDoubleResult(ga, "CurrentAverageQuality"));
|
---|
| 56 | Assert.AreEqual(11823, SamplesUtils.GetDoubleResult(ga, "CurrentWorstQuality"));
|
---|
| 57 | Assert.AreEqual(495500, SamplesUtils.GetIntResult(ga, "EvaluatedSolutions"));
|
---|
| 58 | }
|
---|
| 59 |
|
---|
| 60 | private IslandGeneticAlgorithm CreateIslandGaTspSample() {
|
---|
| 61 | IslandGeneticAlgorithm ga = new IslandGeneticAlgorithm();
|
---|
| 62 | #region Problem Configuration
|
---|
| 63 | var provider = new TSPLIBTSPInstanceProvider();
|
---|
| 64 | var instance = provider.GetDataDescriptors().Where(x => x.Name == "ch130").Single();
|
---|
| 65 | TravelingSalesmanProblem tspProblem = new TravelingSalesmanProblem();
|
---|
| 66 | tspProblem.Load(provider.LoadData(instance));
|
---|
| 67 | tspProblem.UseDistanceMatrix.Value = true;
|
---|
| 68 | #endregion
|
---|
| 69 | #region Algorithm Configuration
|
---|
| 70 | ga.Name = "Island Genetic Algorithm - TSP";
|
---|
| 71 | ga.Description = "An island genetic algorithm which solves the \"ch130\" traveling salesman problem (imported from TSPLIB)";
|
---|
| 72 | ga.Problem = tspProblem;
|
---|
| 73 | SamplesUtils.ConfigureIslandGeneticAlgorithmParameters<ProportionalSelector, OrderCrossover2, InversionManipulator,
|
---|
| 74 | UnidirectionalRingMigrator, BestSelector, WorstReplacer>(
|
---|
| 75 | ga, 100, 1, 1000, 0.05, 5, 50, 0.25);
|
---|
| 76 | #endregion
|
---|
| 77 | return ga;
|
---|
| 78 | }
|
---|
| 79 | }
|
---|
| 80 | }
|
---|