Changeset 10929
- Timestamp:
- 06/03/14 16:26:17 (10 years ago)
- Location:
- stable
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
- Property svn:mergeinfo changed
/trunk/sources merged: 10472,10860-10861
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.VehicleRouting
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Problems.VehicleRouting merged: 10472,10860
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.VehicleRouting.Views
- Property svn:mergeinfo changed
/trunk/sources/HeuristicLab.Problems.VehicleRouting.Views merged: 10861
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.VehicleRouting.Views/3.4/VRPSolutionView.cs
r9456 r10929 49 49 50 50 private void UpdateContent() { 51 var view = problemInstanceView.ActiveView as VRPProblemInstanceView; 52 if (view != null) view.Solution = null; 53 51 54 problemInstanceView.Content = Content.ProblemInstance; 52 VRPProblemInstanceView view = problemInstanceView.ActiveView as VRPProblemInstanceView; 53 if (view != null) { 54 view.Solution = Content.Solution; 55 } 55 56 view = problemInstanceView.ActiveView as VRPProblemInstanceView; 57 if (view != null) view.Solution = Content.Solution; 56 58 57 59 UpdateTourView(); -
stable/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/General/Crossovers/BiasedMultiVRPSolutionCrossover.cs
r10917 r10929 134 134 } 135 135 136 //////////////// 136 //////////////// code has to be duplicated since ActualProbabilitiesParameter.ActualValue are updated and used for operator selection 137 137 IRandom random = RandomParameter.ActualValue; 138 138 DoubleArray probabilities = ActualProbabilitiesParameter.ActualValue; -
stable/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/General/Manipulators/BiasedMultiVRPSolutionManipulator.cs
r10917 r10929 134 134 } 135 135 136 //////////////// 136 //////////////// code has to be duplicated since ActualProbabilitiesParameter.ActualValue are updated and used for operator selection 137 137 IRandom random = RandomParameter.ActualValue; 138 138 DoubleArray probabilities = ActualProbabilitiesParameter.ActualValue; -
stable/HeuristicLab.Problems.VehicleRouting/3.4/VehicleRoutingProblem.cs
r10744 r10929 365 365 Name = instance.Name; 366 366 Description = instance.Description; 367 368 BestKnownQuality = null; 369 BestKnownSolution = null; 370 367 371 if (ProblemInstance != null && instance.ProblemInstance != null && 368 372 instance.ProblemInstance.GetType() == ProblemInstance.GetType()) … … 372 376 373 377 OnReset(); 374 BestKnownQuality = null;375 BestKnownSolution = null;376 378 377 379 if (instance.BestKnownQuality != null) {
Note: See TracChangeset
for help on using the changeset viewer.