Changeset 14711 for branches/PersistenceOverhaul/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/General/Manipulators
- Timestamp:
- 03/03/17 11:41:43 (8 years ago)
- Location:
- branches/PersistenceOverhaul/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/General/Manipulators
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceOverhaul/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/General/Manipulators/BiasedMultiVRPSolutionManipulator.cs
r13368 r14711 34 34 namespace HeuristicLab.Problems.VehicleRouting.Encodings.General { 35 35 [Item("BiasedMultiVRPSolutionManipulator", "Randomly selects and applies one of its crossovers every time it is called based on the success progress.")] 36 [Storable Class("F5202A98-FB93-413A-ABB5-17170901ABBB")]36 [StorableType("F5202A98-FB93-413A-ABB5-17170901ABBB")] 37 37 public class BiasedMultiVRPSolutionManipulator : MultiVRPSolutionManipulator { 38 38 public ValueLookupParameter<DoubleArray> ActualProbabilitiesParameter { -
branches/PersistenceOverhaul/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/General/Manipulators/MultiVRPSolutionManipulator.cs
r13368 r14711 35 35 namespace HeuristicLab.Problems.VehicleRouting.Encodings.General { 36 36 [Item("MultiVRPSolutionManipulator", "Randomly selects and applies one of its manipulators every time it is called.")] 37 [Storable Class("7A83B8C8-A3D8-427B-BD71-D621ED6513F4")]37 [StorableType("7A83B8C8-A3D8-427B-BD71-D621ED6513F4")] 38 38 public class MultiVRPSolutionManipulator : StochasticMultiBranch<IVRPManipulator>, IVRPManipulator, IGeneralVRPOperator, IMultiVRPOperator, IStochasticOperator { 39 39 public override bool CanChangeName { -
branches/PersistenceOverhaul/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/General/Manipulators/VRPManipulator.cs
r13368 r14711 28 28 namespace HeuristicLab.Problems.VehicleRouting.Encodings.General { 29 29 [Item("VRPManipulator", "Manipulates a VRP solution.")] 30 [Storable Class("269FBFB0-B9A4-4FB0-9406-C84AA055FD31")]30 [StorableType("269FBFB0-B9A4-4FB0-9406-C84AA055FD31")] 31 31 public abstract class VRPManipulator : VRPOperator, IVRPManipulator { 32 32 public ILookupParameter<IVRPEncoding> VRPToursParameter {
Note: See TracChangeset
for help on using the changeset viewer.