Changeset 16462 for branches/2520_PersistenceReintegration/HeuristicLab.Algorithms.CMAEvolutionStrategy/3.4/CMAAnalyzer.cs
- Timestamp:
- 12/28/18 16:10:48 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.Algorithms.CMAEvolutionStrategy/3.4/CMAAnalyzer.cs
r16453 r16462 30 30 using HeuristicLab.Optimization; 31 31 using HeuristicLab.Parameters; 32 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;32 using HEAL.Fossil; 33 33 34 34 namespace HeuristicLab.Algorithms.CMAEvolutionStrategy { 35 35 [Item("CMAAnalyzer", "Analyzes the development of strategy parameters and visualizes the performance of CMA-ES.")] 36 [Storable Class]36 [StorableType("7E36BAC4-D2A5-405D-B46F-FF91BC592D43")] 37 37 public sealed class CMAAnalyzer : SingleSuccessorOperator, IAnalyzer, ISingleObjectiveOperator { 38 38 … … 60 60 61 61 [StorableConstructor] 62 private CMAAnalyzer( bool deserializing) : base(deserializing) { }62 private CMAAnalyzer(StorableConstructorFlag _) : base(_) { } 63 63 private CMAAnalyzer(CMAAnalyzer original, Cloner cloner) : base(original, cloner) { } 64 64 public CMAAnalyzer()
Note: See TracChangeset
for help on using the changeset viewer.