- Timestamp:
- 09/03/10 11:15:22 (14 years ago)
- Location:
- branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings
- Files:
-
- 3 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Alba/AlbaOperator.cs
r4362 r4363 29 29 using HeuristicLab.Parameters; 30 30 using HeuristicLab.Operators; 31 using HeuristicLab.Problems.VehicleRouting. Interfaces.Variants;31 using HeuristicLab.Problems.VehicleRouting.Variants; 32 32 33 33 namespace HeuristicLab.Problems.VehicleRouting.Encodings.Alba { -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Alba/Creators/DefaultRepresentationCreator.cs
r4362 r4363 27 27 using System.Collections.Generic; 28 28 using HeuristicLab.Problems.VehicleRouting.Encodings; 29 using HeuristicLab.Problems.VehicleRouting. Interfaces.Variants;29 using HeuristicLab.Problems.VehicleRouting.Variants; 30 30 31 31 namespace HeuristicLab.Problems.VehicleRouting.Encodings.Alba { -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/Tour.cs
r4362 r4363 28 28 using HeuristicLab.Core; 29 29 30 namespace HeuristicLab.Problems.VehicleRouting .DomainModel{30 namespace HeuristicLab.Problems.VehicleRouting { 31 31 [StorableClass] 32 32 public class Tour : Item { -
branches/VRP/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/VRPEncoding.cs
r4362 r4363 27 27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 28 28 using HeuristicLab.Core; 29 using HeuristicLab.Problems.VehicleRouting.DomainModel;30 29 31 30 namespace HeuristicLab.Problems.VehicleRouting.Encodings { … … 38 37 protected VRPEncoding(bool deserializing) : base(deserializing) { } 39 38 40 39 public VRPEncoding() 41 40 : base() { 42 41 }
Note: See TracChangeset
for help on using the changeset viewer.