- Timestamp:
- 05/17/11 17:16:33 (14 years ago)
- Location:
- branches/PersistenceSpeedUp/HeuristicLab.Problems.VehicleRouting/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceSpeedUp/HeuristicLab.Problems.VehicleRouting/3.3/Analyzers/BestVRPSolutionAnalyzer.cs
r5445 r6228 95 95 public BestVRPSolutionAnalyzer() 96 96 : base() { 97 97 Parameters.Add(new ScopeTreeLookupParameter<IVRPEncoding>("VRPTours", "The VRP tours which should be evaluated.")); 98 98 Parameters.Add(new LookupParameter<DoubleMatrix>("Coordinates", "The x- and y-Coordinates of the cities.")); 99 99 Parameters.Add(new LookupParameter<DoubleMatrix>("DistanceMatrix", "The matrix which contains the distances between the cities.")); … … 121 121 122 122 [StorableHook(HookType.AfterDeserialization)] 123 private void AfterDeserialization Hook() {123 private void AfterDeserialization() { 124 124 #region Backwards Compatibility 125 125 if (!Parameters.ContainsKey("BestKnownQuality")) { -
branches/PersistenceSpeedUp/HeuristicLab.Problems.VehicleRouting/3.3/VehicleRoutingProblem.cs
r6042 r6228 436 436 #region Helpers 437 437 [StorableHook(HookType.AfterDeserialization)] 438 private void AfterDeserialization Hook() {438 private void AfterDeserialization() { 439 439 #region Backwards Compatibility 440 440 if (!Parameters.ContainsKey("BestKnownSolution")) {
Note: See TracChangeset
for help on using the changeset viewer.