- 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/CMAEvolutionStrategy.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. … … 31 31 using HeuristicLab.Optimization.Operators; 32 32 using HeuristicLab.Parameters; 33 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;33 using HEAL.Attic; 34 34 using HeuristicLab.PluginInfrastructure; 35 35 using HeuristicLab.Random; … … 38 38 [Item("CMA Evolution Strategy (CMAES)", "An evolution strategy based on covariance matrix adaptation.")] 39 39 [Creatable(CreatableAttribute.Categories.PopulationBasedAlgorithms, Priority = 210)] 40 [Storable Class]40 [StorableType("92CB2910-2D63-49A4-94DE-54DBA0CF2180")] 41 41 public sealed class CMAEvolutionStrategy : HeuristicOptimizationEngineAlgorithm, IStorableContent { 42 42 public string Filename { get; set; } … … 224 224 225 225 [StorableConstructor] 226 private CMAEvolutionStrategy( bool deserializing) : base(deserializing) { }226 private CMAEvolutionStrategy(StorableConstructorFlag _) : base(_) { } 227 227 private CMAEvolutionStrategy(CMAEvolutionStrategy original, Cloner cloner) 228 228 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.