Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/19/12 14:14:20 (12 years ago)
Author:
svonolfe
Message:

Removed operators that will not be included in the first version of the addon (#1955)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DynamicVehicleRouting/HeuristicLab.PDPSimulation/3.3/Optimizers/DynamicPDProblemInstance.cs

    r8670 r8671  
    361361      }
    362362
    363       int j = 0;
    364       while (j < tabuAttributes.Count) {
    365         if (tabuAttributes[j] is DynPotvinPDRelocateMoveAttribute) {
    366           DynPotvinPDRelocateMoveAttribute attr =
    367             tabuAttributes[j] as DynPotvinPDRelocateMoveAttribute;
    368 
    369           if (attr.City > (customer + 1)) {
    370             attr.City = attr.City - 1;
    371             j++;
    372           } else if (attr.City < (customer + 1)) {
    373             j++;
    374           } else {
    375             attr.City = -1;
    376             j++;
    377           }
    378         } else {
    379           j++;
    380         }
    381       }
    382 
    383363      Dictionary<int, Guid> newOrderAssignment = new Dictionary<int, Guid>();
    384364      foreach (int assigned in orderAssignment.Keys) {
Note: See TracChangeset for help on using the changeset viewer.