- Timestamp:
- 08/09/10 18:08:14 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/Interfaces
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/Interfaces/IVRPCreator.cs
r4154 r4179 27 27 public interface IVRPCreator : IVRPOperator, ISolutionCreator { 28 28 IValueLookupParameter<IntValue> CitiesParameter { get; } 29 ILookupParameter<IVRPEncoding> VRP SolutionParameter { get; }29 ILookupParameter<IVRPEncoding> VRPToursParameter { get; } 30 30 } 31 31 } -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/Interfaces/IVRPEvaluator.cs
r4154 r4179 26 26 namespace HeuristicLab.Problems.VehicleRouting { 27 27 public interface IVRPEvaluator : ISingleObjectiveEvaluator, IVRPOperator { 28 ILookupParameter<IVRPEncoding> VRP SolutionParameter { get; }28 ILookupParameter<IVRPEncoding> VRPToursParameter { get; } 29 29 30 30 ILookupParameter<DoubleValue> VehcilesUtilizedParameter { get; } -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/Interfaces/IVRPManipulator.cs
r4150 r4179 26 26 namespace HeuristicLab.Problems.VehicleRouting { 27 27 public interface IVRPManipulator : IVRPOperator, IManipulator { 28 ILookupParameter<IVRPEncoding> VRP SolutionParameter { get; }28 ILookupParameter<IVRPEncoding> VRPToursParameter { get; } 29 29 } 30 30 } -
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/Interfaces/IVRPMoveOperator.cs
r4150 r4179 26 26 namespace HeuristicLab.Problems.VehicleRouting { 27 27 public interface IVRPMoveOperator : IVRPOperator, IMoveOperator { 28 ILookupParameter<IVRPEncoding> VRP SolutionParameter { get; }28 ILookupParameter<IVRPEncoding> VRPToursParameter { get; } 29 29 } 30 30 }
Note: See TracChangeset
for help on using the changeset viewer.