- Timestamp:
- 08/04/10 17:34:02 (14 years ago)
- 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 26 26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 27 27 using System.Collections.Generic; 28 using HeuristicLab.Problems.VehicleRouting.Encodings; 28 29 29 namespace HeuristicLab.Problems.VehicleRouting {30 namespace HeuristicLab.Problems.VehicleRouting.Encodings.General { 30 31 [StorableClass] 31 32 public abstract class IntListRepresentationCreator : VRPCreator { -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/General/PushForwardInsertionCreator.cs
r4150 r4154 29 29 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 30 30 31 namespace HeuristicLab.Problems.VehicleRouting {31 namespace HeuristicLab.Problems.VehicleRouting.Encodings.General { 32 32 [StorableClass] 33 33 public abstract class PushForwardCreator : IntListRepresentationCreator, IStochasticOperator { … … 199 199 *----------------------------------------------------------------------------- 200 200 */ 201 for (int i = 1; i <= Cities Parameter.ActualValue.Value; i++) {201 for (int i = 1; i <= Cities; i++) { 202 202 distance = Distance(i, 0); 203 203 if (CoordinatesParameter.ActualValue[i, 0] < x0) distance = -distance;
Note: See TracChangeset
for help on using the changeset viewer.