Changeset 8121 for trunk/sources/HeuristicLab.Problems.VehicleRouting
- Timestamp:
- 06/26/12 13:12:48 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.VehicleRouting/3.4/VehicleRoutingProblem.cs
r8053 r8121 67 67 get { return (OptionalValueParameter<VRPSolution>)Parameters["BestKnownSolution"]; } 68 68 } 69 public I ValueParameter<IVRPCreator> SolutionCreatorParameter {70 get { return (I ValueParameter<IVRPCreator>)Parameters["SolutionCreator"]; }69 public IConstrainedValueParameter<IVRPCreator> SolutionCreatorParameter { 70 get { return (IConstrainedValueParameter<IVRPCreator>)Parameters["SolutionCreator"]; } 71 71 } 72 72 IParameter IHeuristicOptimizationProblem.SolutionCreatorParameter { … … 105 105 } 106 106 107 public ISolutionCreatorSolutionCreator {107 ISolutionCreator IHeuristicOptimizationProblem.SolutionCreator { 108 108 get { return SolutionCreatorParameter.Value; } 109 } 110 public IVRPCreator SolutionCreator { 111 get { return SolutionCreatorParameter.Value; } 112 set { SolutionCreatorParameter.Value = value; } 109 113 } 110 114 #endregion
Note: See TracChangeset
for help on using the changeset viewer.