Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/30/17 10:28:58 (7 years ago)
Author:
jkarder
Message:

#2205: worked on optimization networks

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/OptimizationNetworks/HeuristicLab.Networks.IntegratedOptimization.TravelingThief/3.3/TtpNetwork3.cs

    r14610 r14616  
    3838    public TtpNetwork3() : this("TtpNetwork3") { }
    3939    public TtpNetwork3(string name) : base(name) {
     40      Orchestrator = new TtpOrchestratorNode2(OrchestratorNodeName);
     41      MetaSolver = new OrchestratedAlgorithmNode(MetaSolverNodeName);
     42      TspSolver = new OrchestratedAlgorithmNode(TspSolverNodeName);
     43      KspSolver = new OrchestratedAlgorithmNode(KspSolverNodeName);
     44
    4045      var cmaes = new CMAEvolutionStrategy();
    4146      cmaes.Problem = new VariegationProblem();
     
    4550
    4651      var ls = new LocalSearch();
    47       ls.Problem = Orchestrator.KspParameter.Value;
     52      ls.Problem = Orchestrator.TspParameter.Value;
    4853      ls.MaximumIterations.Value = 100;
    4954      ls.SampleSize.Value = 2000;
Note: See TracChangeset for help on using the changeset viewer.