Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/21/21 15:31:20 (3 years ago)
Author:
abeham
Message:

#2521: updated samples (except for GPR - unit test needs to be refactored first)

  • Fixed a few bugs in VRP
  • Fixed the GAGroupingProblemSampleTest
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2521_ProblemRefactoring/HeuristicLab.Problems.VehicleRouting/3.4/VehicleRoutingProblem.cs

    r17745 r17954  
    217217      if (operatorTypes.Add(typeof(PopulationSimilarityAnalyzer)))
    218218        newOps.Add(new PopulationSimilarityAnalyzer(Operators.OfType<ISolutionSimilarityCalculator>()));
     219      if (operatorTypes.Add(typeof(VRPIntraRouteImprovementOperator)))
     220        newOps.Add(new VRPIntraRouteImprovementOperator());
     221      if (operatorTypes.Add(typeof(VRPPathRelinker)))
     222        newOps.Add(new VRPPathRelinker());
    219223
    220224      var assembly = typeof(VehicleRoutingProblem).Assembly;
Note: See TracChangeset for help on using the changeset viewer.