Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/04/10 17:34:02 (14 years ago)
Author:
svonolfe
Message:

Further improved the VRP design (#1039)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/General/PushForwardInsertionCreator.cs

    r4150 r4154  
    2929using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    3030
    31 namespace HeuristicLab.Problems.VehicleRouting {
     31namespace HeuristicLab.Problems.VehicleRouting.Encodings.General {
    3232  [StorableClass]
    3333  public abstract class PushForwardCreator : IntListRepresentationCreator, IStochasticOperator {
     
    199199       *-----------------------------------------------------------------------------
    200200       */
    201       for (int i = 1; i <= CitiesParameter.ActualValue.Value; i++) {
     201      for (int i = 1; i <= Cities; i++) {
    202202        distance = Distance(i, 0);
    203203        if (CoordinatesParameter.ActualValue[i, 0] < x0) distance = -distance;
Note: See TracChangeset for help on using the changeset viewer.