Changeset 16462 for branches/2520_PersistenceReintegration/HeuristicLab.Algorithms.EvolutionStrategy
- Timestamp:
- 12/28/18 16:10:48 (6 years ago)
- Location:
- branches/2520_PersistenceReintegration/HeuristicLab.Algorithms.EvolutionStrategy/3.3
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.Algorithms.EvolutionStrategy/3.3/EvolutionStrategyMainLoop.cs
r16453 r16462 26 26 using HeuristicLab.Optimization.Operators; 27 27 using HeuristicLab.Parameters; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Fossil; 29 29 using HeuristicLab.Selection; 30 30 … … 34 34 /// </summary> 35 35 [Item("EvolutionStrategyMainLoop", "An operator which represents the main loop of an evolution strategy (EvolutionStrategy).")] 36 [Storable Class]36 [StorableType("1B28A359-B37A-4959-A9B1-93C2E8C7C20A")] 37 37 public sealed class EvolutionStrategyMainLoop : AlgorithmOperator { 38 38 #region Parameter properties … … 101 101 102 102 [StorableConstructor] 103 private EvolutionStrategyMainLoop( bool deserializing) : base(deserializing) { }103 private EvolutionStrategyMainLoop(StorableConstructorFlag _) : base(_) { } 104 104 private EvolutionStrategyMainLoop(EvolutionStrategyMainLoop original, Cloner cloner) 105 105 : base(original, cloner) { -
branches/2520_PersistenceReintegration/HeuristicLab.Algorithms.EvolutionStrategy/3.3/HeuristicLab.Algorithms.EvolutionStrategy-3.3.csproj
r16454 r16462 102 102 <HintPath>..\..\packages\Google.Protobuf.3.6.1\lib\net45\Google.Protobuf.dll</HintPath> 103 103 </Reference> 104 <Reference Include="HEAL.Fossil, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">104 <Reference Include="HEAL.Fossil, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 105 105 <HintPath>..\..\packages\HEAL.Fossil.1.0.0\lib\netstandard2.0\HEAL.Fossil.dll</HintPath> 106 106 </Reference> -
branches/2520_PersistenceReintegration/HeuristicLab.Algorithms.EvolutionStrategy/3.3/WithoutRepeatingBatchedRandomSelector.cs
r16453 r16462 26 26 using HeuristicLab.Data; 27 27 using HeuristicLab.Parameters; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Fossil; 29 29 using HeuristicLab.Selection; 30 30 31 31 namespace HeuristicLab.Algorithms.EvolutionStrategy { 32 32 [Item("WithoutRepeatingBatchedRandomSelector", "Selects m batches of n parents where in each batch the n parents are drawn without repeating.")] 33 [Storable Class]33 [StorableType("FF9A96DC-8B6D-40D2-99A2-D91A4C990E15")] 34 34 public class WithoutRepeatingBatchedRandomSelector : StochasticSelector { 35 35 public override bool CanChangeName { … … 44 44 45 45 [StorableConstructor] 46 protected WithoutRepeatingBatchedRandomSelector( bool deserializing) : base(deserializing) { }46 protected WithoutRepeatingBatchedRandomSelector(StorableConstructorFlag _) : base(_) { } 47 47 protected WithoutRepeatingBatchedRandomSelector(WithoutRepeatingBatchedRandomSelector original, Cloner cloner) 48 48 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.