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)

Location:
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/General
Files:
2 edited

Legend:

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

    r4150 r4154  
    2626using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2727using System.Collections.Generic;
     28using HeuristicLab.Problems.VehicleRouting.Encodings;
    2829
    29 namespace HeuristicLab.Problems.VehicleRouting {
     30namespace HeuristicLab.Problems.VehicleRouting.Encodings.General {
    3031  [StorableClass]
    3132  public abstract class IntListRepresentationCreator : VRPCreator {
  • 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.