- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Problems.VehicleRouting
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/General/Manipulators/BiasedMultiVRPSolutionManipulator.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 29 29 using HeuristicLab.Optimization; 30 30 using HeuristicLab.Parameters; 31 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;31 using HEAL.Attic; 32 32 using HeuristicLab.Random; 33 33 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]36 [StorableType("213DD800-26CC-47FE-A151-CFB8742DB3C1")] 37 37 public class BiasedMultiVRPSolutionManipulator : MultiVRPSolutionManipulator { 38 38 public ValueLookupParameter<DoubleArray> ActualProbabilitiesParameter { … … 57 57 58 58 [StorableConstructor] 59 protected BiasedMultiVRPSolutionManipulator( bool deserializing) : base(deserializing) { }59 protected BiasedMultiVRPSolutionManipulator(StorableConstructorFlag _) : base(_) { } 60 60 protected BiasedMultiVRPSolutionManipulator(BiasedMultiVRPSolutionManipulator original, Cloner cloner) : base(original, cloner) { } 61 61 public BiasedMultiVRPSolutionManipulator() -
stable/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/General/Manipulators/MultiVRPSolutionManipulator.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 29 29 using HeuristicLab.Optimization; 30 30 using HeuristicLab.Parameters; 31 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;31 using HEAL.Attic; 32 32 using HeuristicLab.Problems.VehicleRouting.Interfaces; 33 33 using HeuristicLab.Problems.VehicleRouting.Variants; … … 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]37 [StorableType("9EE8B958-A511-40EC-A3DA-0F0CE0BF6524")] 38 38 public class MultiVRPSolutionManipulator : StochasticMultiBranch<IVRPManipulator>, IVRPManipulator, IGeneralVRPOperator, IMultiVRPOperator, IStochasticOperator { 39 39 public override bool CanChangeName { … … 54 54 55 55 [StorableConstructor] 56 protected MultiVRPSolutionManipulator( bool deserializing) : base(deserializing) { }56 protected MultiVRPSolutionManipulator(StorableConstructorFlag _) : base(_) { } 57 57 public MultiVRPSolutionManipulator() 58 58 : base() { -
stable/HeuristicLab.Problems.VehicleRouting/3.4/Encodings/General/Manipulators/VRPManipulator.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 23 23 using HeuristicLab.Core; 24 24 using HeuristicLab.Parameters; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Attic; 26 26 using HeuristicLab.Problems.VehicleRouting.Interfaces; 27 27 28 28 namespace HeuristicLab.Problems.VehicleRouting.Encodings.General { 29 29 [Item("VRPManipulator", "Manipulates a VRP solution.")] 30 [Storable Class]30 [StorableType("6A7616B7-0BA2-45DA-B89F-C4ECE93080BD")] 31 31 public abstract class VRPManipulator : VRPOperator, IVRPManipulator { 32 32 public ILookupParameter<IVRPEncoding> VRPToursParameter { … … 35 35 36 36 [StorableConstructor] 37 protected VRPManipulator( bool deserializing) : base(deserializing) { }37 protected VRPManipulator(StorableConstructorFlag _) : base(_) { } 38 38 39 39 public VRPManipulator()
Note: See TracChangeset
for help on using the changeset viewer.