Changeset 14929 for branches/PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/General
- Timestamp:
- 05/04/17 19:06:54 (8 years ago)
- Location:
- branches/PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/General/Moves/Interfaces
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/General/Moves/Interfaces/IMultiVRPMoveGenerator.cs
r14185 r14929 21 21 22 22 using HeuristicLab.Optimization; 23 using HeuristicLab.Persistence; 23 24 24 25 namespace HeuristicLab.Problems.VehicleRouting.Encodings.General { 26 [StorableType("0e5e31f3-3d06-4e2c-8398-6556fc5cc8c8")] 25 27 public interface IMultiVRPMoveGenerator : IMultiVRPMoveOperator, ISingleMoveGenerator { 26 28 } -
branches/PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/General/Moves/Interfaces/IMultiVRPMoveOperator.cs
r14185 r14929 21 21 22 22 using HeuristicLab.Problems.VehicleRouting.Interfaces; 23 using HeuristicLab.Persistence; 23 24 24 25 namespace HeuristicLab.Problems.VehicleRouting.Encodings.General { 26 [StorableType("f29ba213-ceba-4422-91f7-9d25955212fd")] 25 27 public interface IMultiVRPMoveOperator : IVRPMoveOperator { 26 28 } -
branches/PersistenceReintegration/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/General/Moves/Interfaces/IVRPMove.cs
r14185 r14929 22 22 using HeuristicLab.Core; 23 23 using HeuristicLab.Optimization; 24 using HeuristicLab.Persistence; 24 25 25 26 namespace HeuristicLab.Problems.VehicleRouting.Encodings.General { 27 [StorableType("072d5d4d-7b9e-4291-9506-8309370a8032")] 26 28 public interface IVRPMove : IItem { 27 29 VRPMoveEvaluator GetMoveEvaluator();
Note: See TracChangeset
for help on using the changeset viewer.