- Timestamp:
- 07/07/19 23:40:10 (4 years ago)
- Location:
- stable
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Algorithms.CMAEvolutionStrategy/3.4/CMAParameters.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. … … 24 24 using HeuristicLab.Common; 25 25 using HeuristicLab.Core; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Attic; 27 27 28 28 namespace HeuristicLab.Algorithms.CMAEvolutionStrategy { 29 29 [Item("CMAParameters", "CMA-ES controls many strategy parameters that guide the search and which are combined in this class.")] 30 [Storable Class]30 [StorableType("FB7495E1-6285-4E3E-AEC3-F40CCB182F0F")] 31 31 public sealed class CMAParameters : Item { 32 32 … … 81 81 82 82 [StorableConstructor] 83 private CMAParameters( bool deserializing) : base(deserializing) { }83 private CMAParameters(StorableConstructorFlag _) : base(_) { } 84 84 private CMAParameters(CMAParameters original, Cloner cloner) 85 85 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.