Changeset 14712 for branches/PersistenceOverhaul/HeuristicLab.Problems.VehicleRouting/3.4/Interfaces
- Timestamp:
- 03/03/17 17:33:24 (8 years ago)
- Location:
- branches/PersistenceOverhaul/HeuristicLab.Problems.VehicleRouting/3.4/Interfaces
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceOverhaul/HeuristicLab.Problems.VehicleRouting/3.4/Interfaces/IMultiVRPOperator.cs
r12012 r14712 24 24 25 25 namespace HeuristicLab.Problems.VehicleRouting.Interfaces { 26 interface IMultiVRPOperator : IVRPOperator { 26 [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("3264D50B-0040-415B-98AA-5A8D20DA779B")] 27 internal interface IMultiVRPOperator : IVRPOperator { 27 28 void SetOperators(IEnumerable<IOperator> operators); 28 29 } -
branches/PersistenceOverhaul/HeuristicLab.Problems.VehicleRouting/3.4/Interfaces/IVRPCreator.cs
r12012 r14712 24 24 25 25 namespace HeuristicLab.Problems.VehicleRouting.Interfaces { 26 [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("767C3157-F144-4E37-B88B-8FBB909D8D52")] 26 27 public interface IVRPCreator : IVRPOperator, ISolutionCreator { 27 28 ILookupParameter<IVRPEncoding> VRPToursParameter { get; } -
branches/PersistenceOverhaul/HeuristicLab.Problems.VehicleRouting/3.4/Interfaces/IVRPCrossover.cs
r12012 r14712 24 24 25 25 namespace HeuristicLab.Problems.VehicleRouting.Interfaces { 26 [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("3BFFA6E3-3287-467C-A172-17DBB0DA594C")] 26 27 public interface IVRPCrossover : IVRPOperator, ICrossover { 27 28 ILookupParameter<ItemArray<IVRPEncoding>> ParentsParameter { get; } -
branches/PersistenceOverhaul/HeuristicLab.Problems.VehicleRouting/3.4/Interfaces/IVRPEncoding.cs
r12012 r14712 24 24 25 25 namespace HeuristicLab.Problems.VehicleRouting.Interfaces { 26 [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("148B7A16-3699-4BDF-BB57-37CD57556FA0")] 26 27 public interface IVRPEncoding : IItem { 27 28 List<Tour> GetTours(); -
branches/PersistenceOverhaul/HeuristicLab.Problems.VehicleRouting/3.4/Interfaces/IVRPEvaluator.cs
r12012 r14712 25 25 26 26 namespace HeuristicLab.Problems.VehicleRouting.Interfaces { 27 [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("18F2A80E-47F6-42D4-8847-99EDBC789B86")] 27 28 public interface IVRPEvaluator : IVRPOperator, ISingleObjectiveEvaluator { 28 29 ILookupParameter<IVRPEncoding> VRPToursParameter { get; } -
branches/PersistenceOverhaul/HeuristicLab.Problems.VehicleRouting/3.4/Interfaces/IVRPLocalSearchManipulator.cs
r12012 r14712 22 22 23 23 namespace HeuristicLab.Problems.VehicleRouting.Interfaces { 24 [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("8AA91D56-61AD-44CD-BA6F-7B990939F304")] 24 25 public interface IVRPLocalSearchManipulator : IVRPManipulator { 25 26 } -
branches/PersistenceOverhaul/HeuristicLab.Problems.VehicleRouting/3.4/Interfaces/IVRPManipulator.cs
r12012 r14712 24 24 25 25 namespace HeuristicLab.Problems.VehicleRouting.Interfaces { 26 [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("8B733BAA-B4C5-4C4F-99C8-24375036452F")] 26 27 public interface IVRPManipulator : IVRPOperator, IManipulator { 27 28 ILookupParameter<IVRPEncoding> VRPToursParameter { get; } -
branches/PersistenceOverhaul/HeuristicLab.Problems.VehicleRouting/3.4/Interfaces/IVRPMoveOperator.cs
r12012 r14712 24 24 25 25 namespace HeuristicLab.Problems.VehicleRouting.Interfaces { 26 [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("F7FADD65-4C9B-4A8E-8E8B-1E4A20CCC905")] 26 27 public interface IVRPMoveOperator : IVRPOperator, IMoveOperator { 27 28 ILookupParameter<IVRPEncoding> VRPToursParameter { get; } -
branches/PersistenceOverhaul/HeuristicLab.Problems.VehicleRouting/3.4/Interfaces/IVRPMultiNeighborhoodShakingOperator.cs
r12012 r14712 24 24 25 25 namespace HeuristicLab.Problems.VehicleRouting.Interfaces { 26 [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("8D8BB048-E2F9-4561-9FDA-F71D9CD11137")] 26 27 public interface IVRPMultiNeighborhoodShakingOperator : IMultiNeighborhoodShakingOperator, IVRPOperator { 27 28 ILookupParameter<IVRPEncoding> VRPToursParameter { get; } -
branches/PersistenceOverhaul/HeuristicLab.Problems.VehicleRouting/3.4/Interfaces/IVRPOperator.cs
r12012 r14712 23 23 24 24 namespace HeuristicLab.Problems.VehicleRouting.Interfaces { 25 [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("0CCC3E4E-10F6-4814-A131-B2F214FCFB64")] 25 26 public interface IVRPOperator : IItem { 26 27 ILookupParameter<IVRPProblemInstance> ProblemInstanceParameter { get; } -
branches/PersistenceOverhaul/HeuristicLab.Problems.VehicleRouting/3.4/Interfaces/IVRPProblemInstance.cs
r12012 r14712 27 27 28 28 namespace HeuristicLab.Problems.VehicleRouting.Interfaces { 29 [HeuristicLab.Persistence.Default.CompositeSerializers.Storable.StorableType("0B6CE8D3-AEEB-4E7D-801A-D9D67EE34138")] 29 30 public interface IVRPProblemInstance : IParameterizedNamedItem { 30 31 IVRPEvaluator SolutionEvaluator { get; set; }
Note: See TracChangeset
for help on using the changeset viewer.