Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/19/10 16:51:30 (14 years ago)
Author:
svonolfe
Message:

Added prins encoding (#1039)

File:
1 edited

Legend:

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

    r4230 r4268  
    2727using HeuristicLab.MainForm;
    2828using HeuristicLab.Problems.VehicleRouting.Encodings;
     29using HeuristicLab.Parameters;
    2930
    3031namespace HeuristicLab.Problems.VehicleRouting.Views {
     
    119120              if (Content.Solution != null) {
    120121                int currentTour = 0;
    121                 foreach (Tour tour in Content.Solution.GetTours()) {
     122                foreach (Tour tour in Content.Solution.GetTours(new ValueLookupParameter<DoubleMatrix>("DistanceMatrix", distanceMatrix))) {
    122123                  double t = 0.0;
    123124                  Point[] tourPoints = new Point[tour.Cities.Count + 2];
Note: See TracChangeset for help on using the changeset viewer.