Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OptimizationNetworks/HeuristicLab.Networks.IntegratedOptimization.TravelingThief/3.3/TtpNetwork3.cs @ 14621

Last change on this file since 14621 was 14621, checked in by jkarder, 7 years ago

#2205: worked on optimization networks

  • added lrp network 2
  • minor code changes
File size: 2.8 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2017 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 HeuristicLab.Algorithms.CMAEvolutionStrategy;
23using HeuristicLab.Algorithms.LocalSearch;
24using HeuristicLab.Algorithms.ParameterlessPopulationPyramid;
25using HeuristicLab.Common;
26using HeuristicLab.Core;
27using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
28
29namespace HeuristicLab.Networks.IntegratedOptimization.TravelingThief {
30  [Item("TtpNetwork3", "Version 3 of a TTP optimization network.")]
31  [Creatable("Optimization Networks")]
32  [StorableClass]
33  public sealed class TtpNetwork3 : TtpNetwork {
34    [StorableConstructor]
35    private TtpNetwork3(bool deserializing) : base(deserializing) { }
36    private TtpNetwork3(TtpNetwork3 original, Cloner cloner) : base(original, cloner) { }
37    public TtpNetwork3() : this("TtpNetwork3") { }
38    public TtpNetwork3(string name) : base(name) {
39      Orchestrator = new TtpOrchestratorNode2(OrchestratorNodeName);
40      MetaSolver = new OrchestratedAlgorithmNode(MetaSolverNodeName);
41      TspSolver = new OrchestratedAlgorithmNode(TspSolverNodeName);
42      KspSolver = new OrchestratedAlgorithmNode(KspSolverNodeName);
43
44      var cmaes = new CMAEvolutionStrategy();
45      cmaes.Problem = new VariegationProblem();
46      cmaes.MaximumGenerations = 80;
47      MetaSolver.Algorithm = cmaes;
48      Orchestrator.MetaSolverOrchestrationPort.ConnectedPort = MetaSolver.OrchestrationPort;
49
50      var ls = new LocalSearch();
51      ls.Problem = Orchestrator.TspParameter.Value;
52      ls.MaximumIterations.Value = 100;
53      ls.SampleSize.Value = 2000;
54      TspSolver.Algorithm = ls;
55      Orchestrator.TspSolverOrchestrationPort.ConnectedPort = TspSolver.OrchestrationPort;
56
57      var p3 = new ParameterlessPopulationPyramid();
58      p3.Problem = Orchestrator.KspParameter.Value;
59      p3.MaximumRuntime = 3;
60      KspSolver.Algorithm = p3;
61      Orchestrator.KspSolverOrchestrationPort.ConnectedPort = KspSolver.OrchestrationPort;
62    }
63
64    public override IDeepCloneable Clone(Cloner cloner) {
65      return new TtpNetwork3(this, cloner);
66    }
67  }
68}
Note: See TracBrowser for help on using the repository browser.