Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/07/17 10:43:13 (7 years ago)
Author:
jkarder
Message:

#2205: worked on optimization networks

  • added lrp network 3
  • fixed bug in distance calculation
  • renamed FLP.mod to FLP_1.mod
  • activated cma analyzer per default
File:
1 edited

Legend:

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

    r14629 r14649  
    2020#endregion
    2121
     22using System.Linq;
    2223using HeuristicLab.Algorithms.CMAEvolutionStrategy;
    2324using HeuristicLab.Algorithms.LocalSearch;
     
    4546      var cmaes = new CMAEvolutionStrategy();
    4647      cmaes.Problem = new MaximizationVariegationProblem<RealVectorEncoding>();
     48      var cmaAnalyzer = cmaes.Analyzer.Operators.OfType<CMAAnalyzer>().Single();
     49      cmaes.Analyzer.Operators.SetItemCheckedState(cmaAnalyzer, true);
    4750      cmaes.MaximumGenerations = 80;
    4851      MetaSolver.Algorithm = cmaes;
Note: See TracChangeset for help on using the changeset viewer.