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/Encodings/General/Crossovers/MultiVRPSolutionCrossover.cs

    r4346 r4347  
    101101      Parameters.Add(new LookupParameter<DoubleArray>("ServiceTime", "The service time of each customer."));
    102102
    103       foreach (Type type in ApplicationManager.Manager.GetTypes(typeof(IVRPCrossover))) {
     103      foreach (Type type in ApplicationManager.Manager.GetTypes(typeof(IVRPCrossover)).OrderBy(op => op.Name)) {
    104104        if (!typeof(MultiOperator<IVRPCrossover>).IsAssignableFrom(type))
    105105          Operators.Add((IVRPCrossover)Activator.CreateInstance(type), true);
Note: See TracChangeset for help on using the changeset viewer.