Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/31/10 14:24:12 (14 years ago)
Author:
svonolfe
Message:

Sorted Operators alphabetically, disabled LS operators by default (#1039)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/VRP/HeuristicLab.Problems.VehicleRouting/3.3/VehicleRoutingProblem.cs

    r4317 r4347  
    320320      operators.Add(new BestAverageWorstVRPToursAnalyzer());
    321321      ParameterizeAnalyzer();
    322       operators.AddRange(ApplicationManager.Manager.GetInstances<IVRPOperator>().Cast<IOperator>());
     322      operators.AddRange(ApplicationManager.Manager.GetInstances<IVRPOperator>().Cast<IOperator>().OrderBy(op => op.Name));
    323323      ParameterizeOperators();
    324324      UpdateMoveEvaluators();
Note: See TracChangeset for help on using the changeset viewer.